summary refs log tree commit diff
path: root/pkgs/tools/misc/quota/default.nix
blob: a13f7160aa6902573a721336b7872d63bd22c08e (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
{ 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 = https://sourceforge.net/projects/linuxquota/;
    license = licenses.gpl2; # With some files being BSD as an exception
    platforms = platforms.linux;
    maintainers = [ maintainers.dezgeg ];
  };
}