lol
1{ mkDerivation, fetchFromGitHub, fetchpatch
2, aeson, aeson-pretty, attoparsec, base, bytestring, conduit, conduit-extra
3, containers, exceptions, mtl, optparse-simple, parsec, scientific, lib
4, text, unordered-containers, vector
5}:
6mkDerivation rec {
7 pname = "jl";
8 version = "0.1.0";
9 sha256 = "15vvn3swjpc5qmdng1fcd8m9nif4qnjmpmxc9hdw5cswzl055lkj";
10 isLibrary = true;
11 isExecutable = true;
12 libraryHaskellDepends = [
13 aeson attoparsec base bytestring containers exceptions mtl parsec
14 scientific text unordered-containers vector
15 ];
16 executableHaskellDepends = [
17 aeson aeson-pretty base bytestring conduit conduit-extra containers
18 mtl optparse-simple text vector
19 ];
20 license = lib.licenses.bsd3;
21 description = "Functional sed for JSON";
22 maintainers = with lib.maintainers; [ fgaz ];
23 homepage = "https://github.com/chrisdone/jl";
24}