mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
734 B
Nix
29 lines
734 B
Nix
{ stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "aide-${version}";
|
|
version = "0.16";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/aide/${version}/aide-${version}.tar.gz";
|
|
sha256 = "0ibkv4z2gk14fn014kq13rp2ysiq6nn2cflv2q5i7zf466hm6758";
|
|
};
|
|
|
|
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];
|
|
|
|
|
|
configureFlags = [
|
|
"--with-posix-acl"
|
|
"--with-selinux"
|
|
"--with-xattr"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://aide.sourceforge.net/;
|
|
description = "A file and directory integrity checker";
|
|
license = licenses.free;
|
|
maintainers = [ maintainers.tstrobel ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|