Skip to content

Commit

Permalink
building binary
Browse files Browse the repository at this point in the history
  • Loading branch information
gvolpe committed Jun 29, 2020
1 parent c54aecb commit 4bc6f70
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ dist-newstyle/
dist/
.ghc.*
.direnv
result
12 changes: 12 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
let
nixpkgs = builtins.fetchTarball {
name = "nixos-unstable-2020-06-21";
url = "https://github.com/NixOS/nixpkgs-channels/archive/a84cbb60f02.tar.gz";
sha256 = "04j07c98iy66hpzha7brz867dcl9lkflck43xvz09dfmlvqyzmiz";
};

pkgs = import nixpkgs {};

inherit (pkgs) haskellPackages;
in
haskellPackages.callCabal2nix "dconf2nix" ./. {}

0 comments on commit 4bc6f70

Please sign in to comment.