1 { lib, stdenv, fetchurl, e2fsprogs, openldap, pkg-config }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/linuxquota/quota-${version}.tar.gz";
9 sha256 = "sha256-nNrKFUvJKvwxF/Dl9bMgjdX4RYOvHPBhw5uqCiuxQvk=";
12 outputs = [ "out" "dev" "doc" "man" ];
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ e2fsprogs openldap ];
18 description = "Tools to manage kernel-level quotas in Linux";
19 homepage = "https://sourceforge.net/projects/linuxquota/";
20 license = licenses.gpl2; # With some files being BSD as an exception
21 platforms = platforms.linux;
22 maintainers = [ maintainers.dezgeg ];