elmPackages.elm-json: init at 0.2.7

This commit is contained in:
Marek Fajkus
2020-08-15 23:33:39 +02:00
parent b6eca9a2af
commit c17f7ef666
3 changed files with 84 additions and 1 deletions
+6 -1
View File
@@ -1,6 +1,8 @@
{ lib, stdenv, pkgs
, haskell, nodejs
, fetchurl, fetchpatch, makeWrapper, writeScriptBin }:
, fetchurl, fetchpatch, makeWrapper, writeScriptBin
# Rust dependecies
, rustPlatform, openssl, pkg-config }:
let
fetchElmDeps = import ./fetchElmDeps.nix { inherit stdenv lib fetchurl; };
@@ -126,5 +128,8 @@ let
};
in hsPkgs.elmPkgs // elmNodePackages // {
elm-json = import ./packages/elm-json.nix {
inherit rustPlatform fetchurl openssl stdenv pkg-config;
};
lib = elmLib;
}