blob: d9aa6492b581109774afbda80e004449c0cbf538 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ lib, stdenv, fetchurl, e2fsprogs, openldap, pkg-config, binlore, linuxquota }:
stdenv.mkDerivation rec {
version = "4.09";
pname = "quota";
src = fetchurl {
url = "mirror://sourceforge/linuxquota/quota-${version}.tar.gz";
sha256 = "sha256-nNrKFUvJKvwxF/Dl9bMgjdX4RYOvHPBhw5uqCiuxQvk=";
};
outputs = [ "out" "dev" "doc" "man" ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ e2fsprogs openldap ];
passthru.binlore.out = binlore.synthesize linuxquota ''
execer cannot bin/quota
'';
meta = with lib; {
description = "Tools to manage kernel-level quotas in Linux";
homepage = "https://sourceforge.net/projects/linuxquota/";
license = licenses.gpl2Plus; # With some files being BSD as an exception
platforms = platforms.linux;
maintainers = [ maintainers.dezgeg ];
};
}
|