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/development/tools/haskell/dconf2nix/dconf2nix.nix
Normal file
24
pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ mkDerivation, base, containers, fetchFromGitHub, hedgehog, lib
|
||||
, optparse-applicative, parsec, template-haskell, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "dconf2nix";
|
||||
version = "0.0.11";
|
||||
src = fetchFromGitHub {
|
||||
owner = "gvolpe";
|
||||
repo = "dconf2nix";
|
||||
rev = "fe7e3d973caa87b1b706096aff3d670f65e39fda";
|
||||
sha256 = "sha256-zuhiFVA8LvFKOPMMvqFu+ofv0CrIl2pMZbPQE/tCaM8=";
|
||||
};
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
base containers optparse-applicative parsec text
|
||||
];
|
||||
executableHaskellDepends = [ base ];
|
||||
testHaskellDepends = [
|
||||
base containers hedgehog parsec template-haskell text
|
||||
];
|
||||
description = "Convert dconf files to Nix, as expected by Home Manager";
|
||||
license = lib.licenses.asl20;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue