2019-03-10 20:00:56 +00:00
|
|
|
{ mkDerivation, fetchFromGitHub, fetchpatch
|
2018-04-04 14:11:04 +00:00
|
|
|
, aeson, aeson-pretty, attoparsec, base, bytestring, conduit, conduit-extra
|
2021-01-25 08:26:54 +00:00
|
|
|
, 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
|
|
|
|
];
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2018-04-04 14:11:04 +00:00
|
|
|
description = "Functional sed for JSON";
|
2021-01-23 12:26:19 +00:00
|
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/chrisdone/jl";
|
2018-04-04 14:11:04 +00:00
|
|
|
}
|