2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, e2fsprogs, openldap, pkgconfig }:
|
2017-07-25 13:24:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-03 00:38:25 +02:00
|
|
|
version = "4.05";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "quota";
|
2017-07-25 13:24:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/linuxquota/quota-${version}.tar.gz";
|
2019-04-03 00:38:25 +02:00
|
|
|
sha256 = "1fbsrxhhf1ls7i025db7p66yzjr0bqa2c63cni217v8l21fmnfzg";
|
2017-07-25 13:24:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "doc" "man" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ e2fsprogs openldap ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-07-25 13:24:25 +02:00
|
|
|
description = "Tools to manage kernel-level quotas in Linux";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://sourceforge.net/projects/linuxquota/";
|
2017-07-25 13:24:25 +02:00
|
|
|
license = licenses.gpl2; # With some files being BSD as an exception
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
};
|
|
|
|
}
|