3
0
Fork 0
forked from mirrors/nixpkgs

dconf2nix: 0.0.5 -> 0.0.6

This commit is contained in:
Gabriel Volpe 2020-09-21 10:58:35 +02:00
parent cc2982b79b
commit 70b417f5f9

View file

@ -1,13 +1,13 @@
{ mkDerivation, base, containers, fetchgit, optparse-applicative { mkDerivation, base, containers, fetchgit, hedgehog
, parsec, stdenv, text , optparse-applicative, parsec, stdenv, template-haskell, text
}: }:
mkDerivation { mkDerivation {
pname = "dconf2nix"; pname = "dconf2nix";
version = "0.0.5"; version = "0.0.6";
src = fetchgit { src = fetchgit {
url = "https://github.com/gvolpe/dconf2nix.git"; url = "https://github.com/gvolpe/dconf2nix.git";
sha256 = "0immbx4bgfq3xmbbrpw441nx0sdpm4cp64s7qbvcbvllp4gbivpg"; sha256 = "0ql3xrr05kg1xrfxq86mhzh5ky33sngx57sahzck3rb8fv2g6amv";
rev = "848ff9966db21c66e61a19c04ab6dfc9270eb78e"; rev = "cf976e033c1a89f897924baa219c3b227fe68489";
fetchSubmodules = true; fetchSubmodules = true;
}; };
isLibrary = true; isLibrary = true;
@ -16,6 +16,9 @@ mkDerivation {
base containers optparse-applicative parsec text base containers optparse-applicative parsec text
]; ];
executableHaskellDepends = [ base ]; executableHaskellDepends = [ base ];
testHaskellDepends = [
base containers hedgehog parsec template-haskell text
];
description = "Convert dconf files to Nix, as expected by Home Manager"; description = "Convert dconf files to Nix, as expected by Home Manager";
license = stdenv.lib.licenses.asl20; license = stdenv.lib.licenses.asl20;
} }