From 71a3f4e8efa833cc1a8209ab336ac8c454cc2f9b Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 3 Aug 2021 15:44:49 +0200 Subject: env.nix -> shell.nix --- env.nix | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 env.nix (limited to 'env.nix') diff --git a/env.nix b/env.nix deleted file mode 100644 index eef085c..0000000 --- a/env.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ nixpkgs ? import {} }: - -let - pname = "regfish"; - version = "2"; - - buildInputs = with pkgs; [ - hsEnv - ]; - - extraCmds = with pkgs; '' - export MANPATH=$(ls -d $(echo "$PATH" | tr : \\n | sed -n 's:\(^/nix/store/[^/]\+\).*:\1/share/man:p') 2>/dev/null | tr \\n :) - $(grep export ${hsEnv.outPath}/bin/ghc) - ''; - - hsEnv = hsPkgs.ghcWithPackages (self: with self; - [ - acid-state - cabal-install - HandsomeSoup - wreq - ] - ); - - hsPkgs = pkgs.haskellPackages.override { - overrides = self: super: with self; { - }; - }; - - pkgs = nixpkgs // staticPkgs; - staticPkgs = with nixpkgs; { - }; - - #{{{ mkExports : set -> string - # Create shell script that exports a set's attributes. - mkExports = set: with builtins; with pkgs.lib.strings; - let - # XXX attribute names are not escaped, they have to be sane - # XXX the value should not contain - mkExport = k: "export ${k}=${escapeSh (getAttr k set)}"; - escapeSh = stringAsChars (c: "\\${c}"); - in - concatStringsSep "\n" (map mkExport (attrNames set)); - #}}} - -in pkgs.myEnvFun { - name = "${pname}-${version}"; - inherit buildInputs extraCmds; -} -# vim: set fdm=marker : -- cgit v1.2.3