Files
Gabriel Volpe a6a62cb3b4 dconf2nix: 0.0.7 -> 0.0.8
(cherry picked from commit 4ea29081fbbf601b3b626f3de74a14b7e8718fa9)
2021-06-01 00:04:48 +00:00

25 lines
768 B
Nix

{ mkDerivation, base, containers, fetchgit, hedgehog, lib
, optparse-applicative, parsec, template-haskell, text
}:
mkDerivation {
pname = "dconf2nix";
version = "0.0.8";
src = fetchgit {
url = "https://github.com/gvolpe/dconf2nix.git";
sha256 = "19jk3p0ys3lbqk21lm37a7alkg2vhnmkvcffjqfxrw8p4737hxid";
rev = "6bf3d7d4ca9f553a9e1ba4a70a65640114d230b2";
fetchSubmodules = true;
};
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;
}