nixpkgs/pkgs/development/compilers/elm/default.nix

48 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildEnv
, haskell, nodejs
, fetchurl, fetchpatch, makeWrapper, git }:
let
fetchElmDeps = import ./fetchElmDeps.nix { inherit stdenv lib fetchurl; };
hsPkgs = haskell.packages.ghc864.override {
2018-08-25 12:52:48 +02:00
overrides = self: super: with haskell.lib;
let elmPkgs = {
2018-08-25 13:01:52 +02:00
elm = overrideCabal (self.callPackage ./packages/elm.nix { }) (drv: {
2018-08-25 12:52:48 +02:00
# sadly with parallelism most of the time breaks compilation
enableParallelBuilding = false;
preConfigure = self.fetchElmDeps {
elmPackages = (import ./packages/elm-srcs.nix);
versionsDat = ./versions.dat;
};
patches = [
(fetchpatch {
url = "https://github.com/elm/compiler/pull/1886/commits/39d86a735e28da514be185d4c3256142c37c2a8a.patch";
sha256 = "0nni5qx1523rjz1ja42z6z9pijxvi3fgbw1dhq5qi11mh1nb9ay7";
})
];
2018-08-25 13:01:52 +02:00
buildTools = drv.buildTools or [] ++ [ makeWrapper ];
2019-01-04 14:03:24 +01:00
jailbreak = true;
2018-08-25 13:01:52 +02:00
postInstall = ''
wrapProgram $out/bin/elm \
--prefix PATH ':' ${lib.makeBinPath [ nodejs ]}
'';
2018-08-25 12:52:48 +02:00
});
/*
2018-10-03 20:41:58 +02:00
The elm-format expression is updated via a script in the https://github.com/avh4/elm-format repo:
`pacakge/nix/build.sh`
*/
2019-01-04 14:55:06 +01:00
elm-format = justStaticExecutables (doJailbreak (self.callPackage ./packages/elm-format.nix {}));
2019-01-04 14:03:24 +01:00
inherit fetchElmDeps;
2019-01-04 14:03:24 +01:00
elmVersion = elmPkgs.elm.version;
};
in elmPkgs // {
inherit elmPkgs;
2018-08-25 12:52:48 +02:00
# Needed for elm-format
indents = self.callPackage ./packages/indents.nix {};
};
};
2018-08-21 23:51:59 +02:00
in hsPkgs.elmPkgs