We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c54aecb commit 4bc6f70Copy full SHA for 4bc6f70
.gitignore
@@ -5,3 +5,4 @@ dist-newstyle/
5
dist/
6
.ghc.*
7
.direnv
8
+result
default.nix
@@ -0,0 +1,12 @@
1
+let
2
+ nixpkgs = builtins.fetchTarball {
3
+ name = "nixos-unstable-2020-06-21";
4
+ url = "https://github.com/NixOS/nixpkgs-channels/archive/a84cbb60f02.tar.gz";
+ sha256 = "04j07c98iy66hpzha7brz867dcl9lkflck43xvz09dfmlvqyzmiz";
+ };
+
+ pkgs = import nixpkgs {};
9
10
+ inherit (pkgs) haskellPackages;
11
+in
12
+ haskellPackages.callCabal2nix "dconf2nix" ./. {}
0 commit comments