Skip to content

Commit

Permalink
elm-interface-to-json: init at 0.1 (#32194)
Browse files Browse the repository at this point in the history
elm-interface-to-json -> init at 0.1
  • Loading branch information
manveru authored and LnL7 committed Dec 2, 2017
1 parent 4a7a497 commit 94b7925
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/compilers/elm/default.nix
Expand Up @@ -72,7 +72,9 @@ let
where foo is a tag for a new version, for example "0.3.1-alpha".
*/
elm-format = self.callPackage ./packages/elm-format.nix { };

elm-interface-to-json = self.callPackage ./packages/elm-interface-to-json.nix {
aeson-pretty = self.aeson-pretty_0_7_2;
};
};
in elmPkgs // {
inherit elmPkgs;
Expand Down
24 changes: 24 additions & 0 deletions pkgs/development/compilers/elm/packages/elm-interface-to-json.nix
@@ -0,0 +1,24 @@
{ mkDerivation, aeson, aeson-pretty, base, binary, bytestring
, concatenative, containers, directory, either, elm-compiler
, filemanip, filepath, indents, optparse-applicative, parsec
, stdenv, text, transformers, fetchgit
}:
mkDerivation {
pname = "elm-interface-to-json";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/stoeffel/elm-interface-to-json";
sha256 = "1izc78w91m7nrc9i2b3lgy3kyjsy4d5mkkblx96ws0bp3dpm5f9k";
rev = "9884c1c997a55f11cf7c3d99a8afa72cf2e97323";
};
isLibrary = false;
isExecutable = true;
jailbreak = true;
executableHaskellDepends = [
aeson aeson-pretty base binary bytestring concatenative containers
directory either elm-compiler filemanip filepath indents
optparse-applicative parsec text transformers
];
homepage = "https://github.com/githubuser/elm-interface-to-json#readme";
license = stdenv.lib.licenses.bsd3;
}

0 comments on commit 94b7925

Please sign in to comment.