summaryrefslogtreecommitdiff
path: root/gf.nix
diff options
context:
space:
mode:
authorodanoburu <bcclaro@gmail.com>2018-08-11 22:44:45 -0300
committerodanoburu <bcclaro@gmail.com>2018-08-11 22:44:45 -0300
commit64ccc424cfa65e2e94f3d01dcc880e3dbde96968 (patch)
tree3af76fac1458f5aaf7f88fed1d78d93cd9885c44 /gf.nix
parentdce81dc0eceed0bc40aedd6d7f164a80c3103224 (diff)
(#5) rm files from nix build
Diffstat (limited to 'gf.nix')
-rw-r--r--gf.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/gf.nix b/gf.nix
deleted file mode 100644
index 2926651f3..000000000
--- a/gf.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-let
- # We import the package hierarchy from the NIX_PATH.
- pkgs = import <nixpkgs> {};
-
- #
- # The `cgi` package has some out-of-date upper bounds.
- # Instead of fixing that upstream, we can use the "jailbreak"
- # function in Nix, which patches away the upper bounds.
- #
- # This isn't ideal, but it lets us build the dependency.
- #
- jailbreak = pkgs.haskell.lib.doJailbreak;
- haskellPackages = pkgs.haskellPackages.extend (self: super: {
- cgi = jailbreak super.cgi;
- });
-
-in {
- gf = haskellPackages.callPackage (import ./default.nix) {};
-}