nixpkgs/pkgs/development/tools/jl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
865 B
Nix
Raw Normal View History

{ mkDerivation, fetchFromGitHub, fetchpatch
2018-04-04 14:11:04 +00:00
, aeson, aeson-pretty, attoparsec, base, bytestring, conduit, conduit-extra
, containers, exceptions, mtl, optparse-simple, parsec, scientific, lib
2018-04-04 14:11:04 +00:00
, text, unordered-containers, vector
}:
mkDerivation rec {
pname = "jl";
2022-05-18 02:27:30 +00:00
version = "0.1.0";
sha256 = "15vvn3swjpc5qmdng1fcd8m9nif4qnjmpmxc9hdw5cswzl055lkj";
2018-04-04 14:11:04 +00:00
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base bytestring containers exceptions mtl parsec
scientific text unordered-containers vector
];
executableHaskellDepends = [
aeson aeson-pretty base bytestring conduit conduit-extra containers
mtl optparse-simple text vector
];
license = lib.licenses.bsd3;
2018-04-04 14:11:04 +00:00
description = "Functional sed for JSON";
maintainers = with lib.maintainers; [ fgaz ];
homepage = "https://github.com/chrisdone/jl";
2018-04-04 14:11:04 +00:00
}