uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
24
pkgs/tools/misc/linuxquota/default.nix
Normal file
24
pkgs/tools/misc/linuxquota/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchurl, e2fsprogs, openldap, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "4.06";
|
||||
pname = "quota";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/linuxquota/quota-${version}.tar.gz";
|
||||
sha256 = "sha256-Lz4DA583jU8Nl6zbSdr1gdyq1k0uHd8SlJX9V5+9Jo0=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" "doc" "man" ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ e2fsprogs openldap ];
|
||||
|
||||
meta = with 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue