Skip to content

Commit 4bc6f70

Browse files
committed
building binary
1 parent c54aecb commit 4bc6f70

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ dist-newstyle/
55
dist/
66
.ghc.*
77
.direnv
8+
result

default.nix

+12
Original file line numberDiff line numberDiff line change
@@ -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";
5+
sha256 = "04j07c98iy66hpzha7brz867dcl9lkflck43xvz09dfmlvqyzmiz";
6+
};
7+
8+
pkgs = import nixpkgs {};
9+
10+
inherit (pkgs) haskellPackages;
11+
in
12+
haskellPackages.callCabal2nix "dconf2nix" ./. {}

0 commit comments

Comments
 (0)