Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 300697dac873
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9368dc4cddbc
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 9, 2019

  1. aide: 0.16 -> 0.16.1

    (cherry picked from commit 2e1217f)
    pSub committed Mar 9, 2019
    Copy the full SHA
    9368dc4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/security/aide/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/security/aide/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "aide-${version}";
version = "0.16";
version = "0.16.1";

src = fetchurl {
url = "mirror://sourceforge/aide/${version}/aide-${version}.tar.gz";
sha256 = "0ibkv4z2gk14fn014kq13rp2ysiq6nn2cflv2q5i7zf466hm6758";
url = "https://github.com/aide/aide/releases/download/v${version}/${name}.tar.gz";
sha256 = "1dqhc0c24wa4zid06pfy61k357yvzh28ij86bk9jf6hcqzn7qaqg";
};

buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];