3
0
Fork 0
forked from mirrors/nixpkgs

quota: init at 4.03

This commit is contained in:
Tuomas Tynkkynen 2017-07-25 14:24:25 +03:00
parent 4a4a33ff88
commit b3b1ae67e5
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, e2fsprogs, openldap, pkgconfig }:
stdenv.mkDerivation rec {
version = "4.03";
name = "quota-${version}";
src = fetchurl {
url = "mirror://sourceforge/linuxquota/quota-${version}.tar.gz";
sha256 = "0jv7vhxhjp3gc4hwgmrhg448sbzzqib80gdas9nm0c5zwyd4sv4w";
};
outputs = [ "out" "dev" "doc" "man" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ e2fsprogs openldap ];
meta = with stdenv.lib; {
description = "Tools to manage kernel-level quotas in Linux";
homepage = http://sourceforge.net/projects/linuxquota/;
license = licenses.gpl2; # With some files being BSD as an exception
platforms = platforms.linux;
maintainers = [ maintainers.dezgeg ];
};
}

View file

@ -3918,6 +3918,8 @@ with pkgs;
quilt = callPackage ../development/tools/quilt { };
quota = callPackage ../tools/misc/quota { };
wiggle = callPackage ../development/tools/wiggle { };
radamsa = callPackage ../tools/security/radamsa { };