hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.17.0-8-ge18310f from Hackage revision
c47aee4f70
.
This commit is contained in:
parent
b22bbd6181
commit
cfa526667b
|
@ -18305,8 +18305,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "ShellCheck";
|
||||
version = "0.7.1";
|
||||
sha256 = "06m4wh891nah3y0br4wh3adpsb16zawkb2ijgf1vcz61fznj6ps1";
|
||||
version = "0.7.2";
|
||||
sha256 = "0wl43njaq95l35y5mvipwp1db9vr551nz9wl0xy83j1x1kc38xgz";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
|
@ -22068,8 +22068,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "Z-Data";
|
||||
version = "0.7.4.0";
|
||||
sha256 = "1v0n0f96d5g1j6xw7d8w225r9qk9snjdfz7snq8pnmpjcna374jf";
|
||||
version = "0.8.0.0";
|
||||
sha256 = "1q954isigmmiyp0zgqjvv16vv63cryaxh87d6p1n4dlq0i77y028";
|
||||
setupHaskellDepends = [ base Cabal ];
|
||||
libraryHaskellDepends = [
|
||||
base bytestring case-insensitive containers deepseq ghc-prim
|
||||
|
@ -34722,8 +34722,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "atlassian-connect-core";
|
||||
version = "0.8.2.0";
|
||||
sha256 = "06wrbz8r4yc6spjrawqrdsc1nf3bc5nr40ssnrmyv00xzkhvjq2j";
|
||||
version = "0.9.0.0";
|
||||
sha256 = "1fl7lrfq6475452qb18yjd0x9blc7zm57m62b3j09dsimdksg99p";
|
||||
enableSeparateDataOutput = true;
|
||||
libraryHaskellDepends = [
|
||||
aeson atlassian-connect-descriptor base base64-bytestring
|
||||
|
@ -85319,15 +85319,19 @@ self: {
|
|||
}) {};
|
||||
|
||||
"errata" = callPackage
|
||||
({ mkDerivation, base, containers, text }:
|
||||
({ mkDerivation, base, containers, hspec, hspec-discover
|
||||
, hspec-golden, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "errata";
|
||||
version = "0.2.0.0";
|
||||
sha256 = "14yg0zh7lawjdqpzw7qiwi0c41zqhbvijxxxba319mij5skmmr4k";
|
||||
version = "0.3.0.0";
|
||||
sha256 = "1m83lp3h2lxqkx0d17kplmwp0ngh3yn79k7yza4jkny0c4xv0ijy";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [ base containers text ];
|
||||
executableHaskellDepends = [ base containers text ];
|
||||
testHaskellDepends = [ base containers hspec hspec-golden text ];
|
||||
testToolDepends = [ hspec-discover ];
|
||||
description = "Source code error pretty printing";
|
||||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
@ -88138,8 +88142,8 @@ self: {
|
|||
({ mkDerivation, base, containers, fgl, mtl, transformers }:
|
||||
mkDerivation {
|
||||
pname = "exploring-interpreters";
|
||||
version = "0.3.0.0";
|
||||
sha256 = "0h39si80s4q4n6599qj95z19jy3yc0101pphm4apvalm6wmppgpz";
|
||||
version = "0.3.1.0";
|
||||
sha256 = "0765nfr65lphp768j3snzpqpz6f4nrmkvsb6ishflhnxnp99xgyz";
|
||||
libraryHaskellDepends = [ base containers fgl mtl transformers ];
|
||||
description = "A generic exploring interpreter for exploratory programming";
|
||||
license = lib.licenses.bsd3;
|
||||
|
@ -107242,23 +107246,26 @@ self: {
|
|||
}) {inherit (pkgs) glpk;};
|
||||
|
||||
"glsl" = callPackage
|
||||
({ mkDerivation, attoparsec, base, bytestring, containers, fgl
|
||||
, graphviz, hspec, hspec-discover, lens, linear, scientific, text
|
||||
, time, transformers
|
||||
({ mkDerivation, attoparsec, base, binary, bytestring, containers
|
||||
, directory, fgl, graphviz, hspec, hspec-discover, lens, linear
|
||||
, QuickCheck, scientific, text, time, transformers, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "glsl";
|
||||
version = "0.0.0.1";
|
||||
sha256 = "1nicar2n7cfrskq78jsa4hwq0lcgr6a8g81fqcbhqs8bkxn39r7l";
|
||||
version = "0.0.1.0";
|
||||
sha256 = "1zq1dy6jzd41qz08xhwvbgy2g6zj90akb2145kh2h2906fyzr2wf";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
enableSeparateDataOutput = true;
|
||||
libraryHaskellDepends = [
|
||||
attoparsec base containers fgl graphviz lens linear scientific text
|
||||
transformers
|
||||
attoparsec base binary containers fgl graphviz lens linear
|
||||
scientific text transformers
|
||||
];
|
||||
executableHaskellDepends = [ base text time ];
|
||||
testHaskellDepends = [ attoparsec base bytestring hspec text ];
|
||||
testHaskellDepends = [
|
||||
attoparsec base binary bytestring directory hspec QuickCheck text
|
||||
vector
|
||||
];
|
||||
testToolDepends = [ hspec-discover ];
|
||||
description = "Parser and optimizer for a small subset of GLSL";
|
||||
license = lib.licenses.bsd3;
|
||||
|
@ -149864,12 +149871,12 @@ self: {
|
|||
}) {};
|
||||
|
||||
"interval-algebra" = callPackage
|
||||
({ mkDerivation, base, hspec, QuickCheck, time }:
|
||||
({ mkDerivation, base, hspec, QuickCheck, time, witherable }:
|
||||
mkDerivation {
|
||||
pname = "interval-algebra";
|
||||
version = "0.1.2";
|
||||
sha256 = "1nhpcrp7r6ba9mqwrfkx0zk7awdw24kh75ggq1wcif6mpir2khkx";
|
||||
libraryHaskellDepends = [ base time ];
|
||||
version = "0.2.0";
|
||||
sha256 = "00nzjdsvdj87dcl8pk44ajxir93ldf1vsg3rxc06snlxrd1c56fa";
|
||||
libraryHaskellDepends = [ base QuickCheck time witherable ];
|
||||
testHaskellDepends = [ base hspec QuickCheck time ];
|
||||
description = "An implementation of Allen's interval algebra for temporal logic";
|
||||
license = lib.licenses.bsd3;
|
||||
|
@ -193321,6 +193328,116 @@ self: {
|
|||
broken = true;
|
||||
}) {};
|
||||
|
||||
"opentracing" = callPackage
|
||||
({ mkDerivation, aeson, async, base, base64-bytestring, bytestring
|
||||
, case-insensitive, clock, containers, http-types, iproute, lens
|
||||
, mtl, mwc-random, network, safe-exceptions, semigroups, stm, text
|
||||
, time, transformers, unordered-containers, uri-bytestring, vinyl
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "opentracing";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "0j791hv525mcskqmji3f9n8v803pailm8jrl336pxzdh3iacqvsl";
|
||||
libraryHaskellDepends = [
|
||||
aeson async base base64-bytestring bytestring case-insensitive
|
||||
clock containers http-types iproute lens mtl mwc-random network
|
||||
safe-exceptions semigroups stm text time transformers
|
||||
unordered-containers uri-bytestring vinyl
|
||||
];
|
||||
description = "OpenTracing for Haskell";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentracing-http-client" = callPackage
|
||||
({ mkDerivation, base, http-client, lens, mtl, opentracing, text }:
|
||||
mkDerivation {
|
||||
pname = "opentracing-http-client";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1jzdnlk2cacmymjkcfx4n569n6gqy6kwzh9dxrgjnagwh3jqk7q3";
|
||||
libraryHaskellDepends = [
|
||||
base http-client lens mtl opentracing text
|
||||
];
|
||||
description = "OpenTracing instrumentation of http-client";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentracing-jaeger" = callPackage
|
||||
({ mkDerivation, base, bytestring, exceptions, hashable
|
||||
, http-client, http-types, lens, mtl, network, opentracing
|
||||
, QuickCheck, safe-exceptions, text, thrift, unordered-containers
|
||||
, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "opentracing-jaeger";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1yr9vhbpqq12hj9blv3v1wc26n9qsp0g7pjngxh0k1zcv759s1k0";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring exceptions hashable http-client http-types lens mtl
|
||||
network opentracing QuickCheck safe-exceptions text thrift
|
||||
unordered-containers vector
|
||||
];
|
||||
description = "Jaeger backend for OpenTracing";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentracing-wai" = callPackage
|
||||
({ mkDerivation, base, lens, opentracing, text, wai }:
|
||||
mkDerivation {
|
||||
pname = "opentracing-wai";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1m68l4gxpyl81yhkd209kdgzydzyg632x8gl2jh3l4k83ysdg545";
|
||||
libraryHaskellDepends = [ base lens opentracing text wai ];
|
||||
description = "Middleware adding OpenTracing tracing for WAI applications";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentracing-zipkin-common" = callPackage
|
||||
({ mkDerivation, aeson, base, opentracing, text }:
|
||||
mkDerivation {
|
||||
pname = "opentracing-zipkin-common";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "00pg2k0v685gc4fmrcb464fapvpz8lw0249n6gmi2zkhpw8frnm0";
|
||||
libraryHaskellDepends = [ aeson base opentracing text ];
|
||||
description = "Zipkin OpenTracing Backend Commons";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentracing-zipkin-v1" = callPackage
|
||||
({ mkDerivation, base, bytestring, exceptions, hashable
|
||||
, http-client, http-types, iproute, lens, opentracing
|
||||
, opentracing-zipkin-common, QuickCheck, text, thrift
|
||||
, unordered-containers, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "opentracing-zipkin-v1";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "0mw6x9jqh42ymn1a3maq47mw1mbzki5lv1axapqkhkx0w13824pp";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring exceptions hashable http-client http-types iproute
|
||||
lens opentracing opentracing-zipkin-common QuickCheck text thrift
|
||||
unordered-containers vector
|
||||
];
|
||||
description = "Zipkin V1 backend for OpenTracing";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentracing-zipkin-v2" = callPackage
|
||||
({ mkDerivation, aeson, base, base64-bytestring, bytestring
|
||||
, exceptions, http-client, http-types, lens, opentracing
|
||||
, opentracing-zipkin-common, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "opentracing-zipkin-v2";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "0rmrlx2g228p4ys95d4zqc0l56a62avsawq320g4n9i2g0hrl5n4";
|
||||
libraryHaskellDepends = [
|
||||
aeson base base64-bytestring bytestring exceptions http-client
|
||||
http-types lens opentracing opentracing-zipkin-common text
|
||||
];
|
||||
description = "Zipkin V2 backend for OpenTracing";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"opentype" = callPackage
|
||||
({ mkDerivation, base, binary, bytestring, containers, ghc
|
||||
, microlens, microlens-th, mtl, pretty-hex, time
|
||||
|
@ -198266,10 +198383,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "patch";
|
||||
version = "0.0.3.2";
|
||||
sha256 = "1b819d1iramxb0sf0zm4ry8mrd74y35iffbb6qys3a2xq1d382xa";
|
||||
revision = "2";
|
||||
editedCabalFile = "09v23qakrdjscwvzjarkssikkp7xmq9jbpp5hh1y857l02r3fz5c";
|
||||
version = "0.0.4.0";
|
||||
sha256 = "02hdhgk7wwcnq7aahbaqx5zzlha6mq6lj0mw57phj3ykmca0zggc";
|
||||
libraryHaskellDepends = [
|
||||
base constraints-extras containers dependent-map dependent-sum lens
|
||||
monoidal-containers semialign semigroupoids these transformers
|
||||
|
@ -200374,7 +200489,7 @@ self: {
|
|||
maintainers = with lib.maintainers; [ psibi ];
|
||||
}) {};
|
||||
|
||||
"persistent_2_12_1_0" = callPackage
|
||||
"persistent_2_12_1_1" = callPackage
|
||||
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
|
||||
, blaze-html, bytestring, conduit, containers, criterion, deepseq
|
||||
, deepseq-generics, fast-logger, file-embed, hspec, http-api-data
|
||||
|
@ -200385,8 +200500,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "persistent";
|
||||
version = "2.12.1.0";
|
||||
sha256 = "06cqrvavjzp2iyvi69j6ga0pqy6265dwsg44h93k4qffhknlms1a";
|
||||
version = "2.12.1.1";
|
||||
sha256 = "00n463mvfnjpi7dz4i3lz379cf4gprsiv57j4jb7wh5a8xr2vfhz";
|
||||
libraryHaskellDepends = [
|
||||
aeson attoparsec base base64-bytestring blaze-html bytestring
|
||||
conduit containers fast-logger http-api-data monad-logger mtl
|
||||
|
@ -200834,19 +200949,20 @@ self: {
|
|||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"persistent-postgresql_2_12_1_0" = callPackage
|
||||
"persistent-postgresql_2_12_1_1" = callPackage
|
||||
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
|
||||
, conduit, containers, fast-logger, hspec, hspec-expectations
|
||||
, HUnit, monad-logger, mtl, persistent, persistent-qq
|
||||
, persistent-test, postgresql-libpq, postgresql-simple, QuickCheck
|
||||
, quickcheck-instances, resource-pool, resourcet
|
||||
, string-conversions, text, time, transformers, unliftio
|
||||
, unliftio-core, unordered-containers, vector
|
||||
, hspec-expectations-lifted, HUnit, monad-logger, mtl, persistent
|
||||
, persistent-qq, persistent-test, postgresql-libpq
|
||||
, postgresql-simple, QuickCheck, quickcheck-instances
|
||||
, resource-pool, resourcet, string-conversions, text, time
|
||||
, transformers, unliftio, unliftio-core, unordered-containers
|
||||
, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "persistent-postgresql";
|
||||
version = "2.12.1.0";
|
||||
sha256 = "18b4069x4jb7qxmrv0hck7r7v8192bkn4nmhl3wfidwn1vvsa9da";
|
||||
version = "2.12.1.1";
|
||||
sha256 = "1zyh40490r3vjr5qyr8hp2ih1pjqjwbmwm1ashdm1b1n9y5ary53";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
|
@ -200857,9 +200973,10 @@ self: {
|
|||
];
|
||||
testHaskellDepends = [
|
||||
aeson base bytestring containers fast-logger hspec
|
||||
hspec-expectations HUnit monad-logger persistent persistent-qq
|
||||
persistent-test QuickCheck quickcheck-instances resourcet text time
|
||||
transformers unliftio unliftio-core unordered-containers vector
|
||||
hspec-expectations hspec-expectations-lifted HUnit monad-logger
|
||||
persistent persistent-qq persistent-test QuickCheck
|
||||
quickcheck-instances resourcet text time transformers unliftio
|
||||
unliftio-core unordered-containers vector
|
||||
];
|
||||
description = "Backend for the persistent library using postgresql";
|
||||
license = lib.licenses.mit;
|
||||
|
@ -202001,12 +202118,12 @@ self: {
|
|||
}) {};
|
||||
|
||||
"phonetic-languages-phonetics-basics" = callPackage
|
||||
({ mkDerivation, base }:
|
||||
({ mkDerivation, base, mmsyn2-array, mmsyn5 }:
|
||||
mkDerivation {
|
||||
pname = "phonetic-languages-phonetics-basics";
|
||||
version = "0.2.0.0";
|
||||
sha256 = "17hvbids2m7mifr54xi9nymhs8iw8bhy3waaapxgl3wkky9xibql";
|
||||
libraryHaskellDepends = [ base ];
|
||||
version = "0.3.0.0";
|
||||
sha256 = "03yid3vfm3abw1i2l30fjpflbwg39f7ii1763217syj613w89r39";
|
||||
libraryHaskellDepends = [ base mmsyn2-array mmsyn5 ];
|
||||
description = "A library for working with generalized phonetic languages usage";
|
||||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
@ -233994,6 +234111,26 @@ self: {
|
|||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"servant-event-stream" = callPackage
|
||||
({ mkDerivation, base, binary, http-media, lens, pipes
|
||||
, servant-foreign, servant-js, servant-pipes, servant-server, text
|
||||
, wai-extra
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "servant-event-stream";
|
||||
version = "0.2.0.0";
|
||||
sha256 = "0iawsriill5nkicvfq5px1a8wabv5fsnvvv3by3vgx6dpm3ib79f";
|
||||
revision = "2";
|
||||
editedCabalFile = "11185da0mngwhphrds4yn425fzhag4bx9rvqidlkipwrjr66apva";
|
||||
libraryHaskellDepends = [
|
||||
base binary http-media lens pipes servant-foreign servant-js
|
||||
servant-pipes servant-server text wai-extra
|
||||
];
|
||||
testHaskellDepends = [ base ];
|
||||
description = "Servant support for Server-Sent events";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"servant-examples" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, directory, either
|
||||
, http-types, js-jquery, lucid, random, servant, servant-client
|
||||
|
@ -250796,6 +250933,60 @@ self: {
|
|||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"strict-containers" = callPackage
|
||||
({ mkDerivation, array, base, base-orphans, binary, ChasingBottoms
|
||||
, containers, deepseq, hashable, HUnit, indexed-traversable
|
||||
, primitive, QuickCheck, random, strict, tasty, tasty-hunit
|
||||
, tasty-quickcheck, template-haskell, test-framework
|
||||
, test-framework-hunit, test-framework-quickcheck2, transformers
|
||||
, unordered-containers, vector, vector-binary-instances
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "strict-containers";
|
||||
version = "0.1";
|
||||
sha256 = "0rb5mhz1f1g79c7c85q6pnars7qs3qzyl2gsc48p9sd2739q5nzs";
|
||||
libraryHaskellDepends = [
|
||||
array base binary containers deepseq hashable indexed-traversable
|
||||
primitive strict unordered-containers vector
|
||||
vector-binary-instances
|
||||
];
|
||||
testHaskellDepends = [
|
||||
array base base-orphans ChasingBottoms containers deepseq hashable
|
||||
HUnit primitive QuickCheck random tasty tasty-hunit
|
||||
tasty-quickcheck template-haskell test-framework
|
||||
test-framework-hunit test-framework-quickcheck2 transformers
|
||||
unordered-containers vector
|
||||
];
|
||||
description = "Strict containers";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"strict-containers-lens" = callPackage
|
||||
({ mkDerivation, base, hashable, lens, strict-containers }:
|
||||
mkDerivation {
|
||||
pname = "strict-containers-lens";
|
||||
version = "0.1";
|
||||
sha256 = "0162vqkwm9z1pyizvs76fbraw6z43w8j1k7ag25l9lv67gydl4c1";
|
||||
libraryHaskellDepends = [ base hashable lens strict-containers ];
|
||||
description = "Strict containers - Lens instances";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"strict-containers-serialise" = callPackage
|
||||
({ mkDerivation, base, cborg, hashable, serialise
|
||||
, strict-containers
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "strict-containers-serialise";
|
||||
version = "0.1";
|
||||
sha256 = "17hsb90awsrgp83nkzjyr51wz7z5v4fii862arqfjkjqm6scb4d3";
|
||||
libraryHaskellDepends = [
|
||||
base cborg hashable serialise strict-containers
|
||||
];
|
||||
description = "Strict containers - Serialise instances";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"strict-data" = callPackage
|
||||
({ mkDerivation, aeson, base, containers, deepseq, doctest
|
||||
, exceptions, fail, hashable, HTF, monad-control, mtl, pretty
|
||||
|
@ -256680,6 +256871,25 @@ self: {
|
|||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"tasty-checklist" = callPackage
|
||||
({ mkDerivation, base, exceptions, parameterized-utils, tasty
|
||||
, tasty-expected-failure, tasty-hunit, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "tasty-checklist";
|
||||
version = "1.0.0.0";
|
||||
sha256 = "1ahy4nmkbqpfw38ny6w85q5whsidk3xyy8m6v6ndik2i8jjh8qr4";
|
||||
libraryHaskellDepends = [
|
||||
base exceptions parameterized-utils text
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base parameterized-utils tasty tasty-expected-failure tasty-hunit
|
||||
text
|
||||
];
|
||||
description = "Check multiple items during a tasty test";
|
||||
license = lib.licenses.isc;
|
||||
}) {};
|
||||
|
||||
"tasty-dejafu" = callPackage
|
||||
({ mkDerivation, base, dejafu, random, tagged, tasty }:
|
||||
mkDerivation {
|
||||
|
@ -271454,8 +271664,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "unicode-collation";
|
||||
version = "0.1.1";
|
||||
sha256 = "02sjpppr1ckjcg8zd2wpj79lz8l9xf6hmjsklx85xc3pid5w734m";
|
||||
version = "0.1.2";
|
||||
sha256 = "1q77rd3d2c1r5d35f0z1mhismc3rf8bg1dwfg32wvdd9hpszc52v";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
|
|
Loading…
Reference in New Issue