about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix
blob: 8d6e19124711ba2f19b9c2b84ae8ed166a0287f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}