3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/elm/default.nix

70 lines
2.8 KiB
Nix
Raw Normal View History

{ lib, stdenv
, haskell, nodejs
, fetchurl, fetchpatch, makeWrapper, writeScriptBin }:
let
fetchElmDeps = import ./fetchElmDeps.nix { inherit stdenv lib fetchurl; };
patchBinwrap = import ./packages/patch-binwrap.nix { inherit lib writeScriptBin stdenv; };
elmNodePackages =
import ./packages/node-composition.nix {
inherit nodejs;
inherit (stdenv.hostPlatform) system;
};
hsPkgs = haskell.packages.ghc864.override {
2018-08-25 11:52:48 +01:00
overrides = self: super: with haskell.lib;
let elmPkgs = rec {
2018-08-25 12:01:52 +01:00
elm = overrideCabal (self.callPackage ./packages/elm.nix { }) (drv: {
2018-08-25 11:52:48 +01:00
# sadly with parallelism most of the time breaks compilation
# also compilation is slower with increasing number of cores anyway (Tested on Ryzen 7 and i7)
2018-08-25 11:52:48 +01:00
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 12:01:52 +01:00
buildTools = drv.buildTools or [] ++ [ makeWrapper ];
2019-01-04 13:03:24 +00:00
jailbreak = true;
2018-08-25 12:01:52 +01:00
postInstall = ''
wrapProgram $out/bin/elm \
--prefix PATH ':' ${lib.makeBinPath [ nodejs ]}
'';
2018-08-25 11:52:48 +01:00
});
/*
2018-10-03 19:41:58 +01:00
The elm-format expression is updated via a script in the https://github.com/avh4/elm-format repo:
`package/nix/build.sh`
*/
2019-01-04 13:55:06 +00:00
elm-format = justStaticExecutables (doJailbreak (self.callPackage ./packages/elm-format.nix {}));
2019-01-04 13:03:24 +00:00
elmi-to-json = justStaticExecutables (self.callPackage ./packages/elmi-to-json.nix {});
inherit fetchElmDeps;
2019-01-04 13:03:24 +00:00
elmVersion = elmPkgs.elm.version;
/*
Node/NPM based dependecies can be upgraded using script
`packages/generate-node-packages.sh`.
Packages which rely on `bin-wrap` will fail by default
and can be patched using `patchBinwrap` function defined in `packages/patch-binwrap.nix`.
*/
elm-test = patchBinwrap [elmi-to-json] elmNodePackages.elm-test;
elm-verify-examples = patchBinwrap [elmi-to-json] elmNodePackages.elm-verify-examples;
elm-analyse = elmNodePackages."elm-analyse-0.16.3";
inherit (elmNodePackages) elm-doc-preview elm-upgrade;
};
in elmPkgs // {
inherit elmPkgs;
2018-08-25 11:52:48 +01:00
# Needed for elm-format
indents = self.callPackage ./packages/indents.nix {};
};
};
2018-08-21 22:51:59 +01:00
in hsPkgs.elmPkgs