python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / linuxquota / default.nix
blobb5fc42be82dc7f9720e4bad3bc339cd50c10c85c
1 { lib, stdenv, fetchurl, e2fsprogs, openldap, pkg-config }:
3 stdenv.mkDerivation rec {
4   version = "4.09";
5   pname = "quota";
7   src = fetchurl {
8     url = "mirror://sourceforge/linuxquota/quota-${version}.tar.gz";
9     sha256 = "sha256-nNrKFUvJKvwxF/Dl9bMgjdX4RYOvHPBhw5uqCiuxQvk=";
10   };
12   outputs = [ "out" "dev" "doc" "man" ];
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ e2fsprogs openldap ];
17   meta = with lib; {
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 ];
23   };