diff options
author | Ben Sima <ben@bsima.me> | 2023-08-03 22:25:06 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-08-03 22:38:28 -0400 |
commit | 88af507c33ab32ae23e35bde9cd7fbbc0d534390 (patch) | |
tree | 0aef964b759d518806dafd6495e473d5206044eb /Biz/Bild/Haskell.nix | |
parent | 40c6c18e57d88b101bd4396d48aefa681689bfb3 (diff) |
Move buildPhase to a nix-instantiate argument
Diffstat (limited to 'Biz/Bild/Haskell.nix')
-rw-r--r-- | Biz/Bild/Haskell.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/Biz/Bild/Haskell.nix b/Biz/Bild/Haskell.nix deleted file mode 100644 index 24b6686..0000000 --- a/Biz/Bild/Haskell.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ srcs # list of files -, root # path to git root -, packageSet # name mapped to private.${packageSet}, e.g. 'ghcWith' -, langDeps ? null # list of deps (as a string), split and passed to packageSet -, name # exe name -, main # entrypoint file -, mainIs # entrypoint module name -}: -with import (/. + root + "/Biz/Bild.nix") {}; -with builtins; -let - srcs_ = lib.strings.splitString " " srcs; - skip = ["_" ".direnv"]; - filter = file: type: - if elem (baseNameOf file) skip then false - # TODO: this means any new directory will cause a rebuild. this bad. - # i should recurse into the directory and match against the srcsr - else if type == "directory" then true - else if type == "regular" then builtins.elem file srcs_ - else false; - deps = pkgset: - if langDeps != null then - private.selectAttrs (lib.strings.splitString " " langDeps) pkgset - else - []; -in stdenv.mkDerivation { - inherit name; - buildInputs = [ (private.${packageSet} deps) ]; - src = lib.sources.cleanSourceWith {inherit filter; src = lib.sources.cleanSource root;}; - buildPhase = '' - ghc -Werror -i$src -odir. -hidir. --make $src/${main} -main-is "${mainIs}" -o ${name} - ''; - installPhase = '' - mkdir -p $out/bin && cp ${name} $out/bin - ''; -} |