about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/elm/packages/elmi-to-json.nix
blob: f6a0b9e24263ddc463e86cef0032724caea1c98a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ mkDerivation, aeson, async, base, binary, bytestring, containers
, directory, filepath, hpack, optparse-applicative, safe-exceptions
, stdenv, text, fetchgit
}:
mkDerivation {
  pname = "elmi-to-json";
  version = "0.19.4";
  src = fetchgit {
    url = "https://github.com/stoeffel/elmi-to-json.git";
    rev = "357ad96f05e4c68023b036f27f6f65c4377c7427";
    sha256 = "0vj9fdqgg2zd1nxpll6v02fk6bcyhx00xhp3s8sd7ycvirwsim9n";
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    aeson async base binary bytestring containers directory filepath
    optparse-applicative safe-exceptions text
  ];
  libraryToolDepends = [ hpack ];
  executableHaskellDepends = [ base ];
  testHaskellDepends = [ base ];
  preConfigure = "hpack";
  homepage = "https://github.com/stoeffel/elmi-to-json#readme";
  description = "Translates elmi binary files to JSON representation";
  license = stdenv.lib.licenses.bsd3;
  maintainers = with stdenv.lib.maintainers; [ turbomack ];
}