forked from mirrors/nixpkgs
hackage-packages.nix: update to abae36d131
with hackage2nix revision c84f676708fec9d3a848f466468db04c7e641069
This commit is contained in:
parent
a682c2eb4e
commit
c59420a856
|
@ -2231,17 +2231,16 @@ self: {
|
|||
|
||||
"Chart" = callPackage
|
||||
({ mkDerivation, array, base, colour, data-default-class, lens, mtl
|
||||
, old-locale, operational, time
|
||||
, old-locale, operational, time, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "Chart";
|
||||
version = "1.3.3";
|
||||
sha256 = "1shq0320mc47kjbfw3vqrmjshb8fd3afd009kqxd8nn9g7m48019";
|
||||
version = "1.4";
|
||||
sha256 = "1pcrbsxv9n9285ihvir62znm2rqfjk913fiv1q5c8ijgjzicfnl2";
|
||||
buildDepends = [
|
||||
array base colour data-default-class lens mtl old-locale
|
||||
operational time
|
||||
operational time vector
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/timbod7/haskell-chart/wiki";
|
||||
description = "A library for generating 2D Charts and Plots";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -2253,13 +2252,12 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "Chart-cairo";
|
||||
version = "1.3.3";
|
||||
sha256 = "1x1bs5xlzw91qx2rgfak1i5q15l6hij6hhir6qw7bgl57n1046ah";
|
||||
version = "1.4";
|
||||
sha256 = "1s407l8mnczkah708ajpp9mvra3yp2ajyczl0gf8bgd9fq23dp4f";
|
||||
buildDepends = [
|
||||
array base cairo Chart colour data-default-class lens mtl
|
||||
old-locale operational time
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/timbod7/haskell-chart/wiki";
|
||||
description = "Cairo backend for Charts";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -2273,8 +2271,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "Chart-diagrams";
|
||||
version = "1.3.3";
|
||||
sha256 = "1bvlfy2gmv0w99jr32srdvrh7g0fzgvwhmzw8sf2iii12a7xwf56";
|
||||
version = "1.4";
|
||||
sha256 = "0qg8kva68394zdd8h0p8zkyjwnl2i6avl2ybr96kqr76iyh3x28k";
|
||||
buildDepends = [
|
||||
base blaze-svg bytestring Chart colour containers
|
||||
data-default-class diagrams-core diagrams-lib diagrams-postscript
|
||||
|
@ -2293,8 +2291,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "Chart-gtk";
|
||||
version = "1.3.3";
|
||||
sha256 = "0b8c7f2mha45iaw8vpzvhyxsqg3lrfm2cn89an27vsw9k72qric2";
|
||||
version = "1.4";
|
||||
sha256 = "1ig132jv3djwnd7lnizbxkwj3f1ngaj775j10vbb1dbq8x8bi2hy";
|
||||
buildDepends = [
|
||||
array base cairo Chart Chart-cairo colour data-default-class gtk
|
||||
mtl old-locale time
|
||||
|
@ -2316,6 +2314,7 @@ self: {
|
|||
array base cairo Chart Chart-cairo Chart-gtk colour
|
||||
data-default-class gtk mtl old-locale time
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/timbod7/haskell-chart/wiki";
|
||||
description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -2968,8 +2967,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "DAV";
|
||||
version = "1.0.4";
|
||||
sha256 = "14vi1nlz0f5pq5csril6khx0sdmc3frj4bimfg6dszykp1y5lf77";
|
||||
version = "1.0.5";
|
||||
sha256 = "0kfbvrkhj7dfk45q3nhpgif2glnf4ng9s5w3ljf0kijh11m39b21";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
@ -11257,17 +11256,17 @@ self: {
|
|||
}) {};
|
||||
|
||||
"OpenSCAD" = callPackage
|
||||
({ mkDerivation, base, Cabal, colour, filepath, HUnit, semigroups
|
||||
, test-framework, test-framework-hunit
|
||||
({ mkDerivation, base, Cabal, colour, containers, deepseq, filepath
|
||||
, HUnit, semigroups, tasty, tasty-hunit, testpack
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "OpenSCAD";
|
||||
version = "0.2.1.1";
|
||||
sha256 = "0k53hcd5nvsc40d3cm8scdxpgd37if3k8i83hgbcicjnc38vbqzi";
|
||||
buildDepends = [ base colour filepath semigroups ];
|
||||
version = "0.3.0.1";
|
||||
sha256 = "1cczhagc77rfdpwf6x993rdwmmgssph4dlr87dq1mnwh0ixhf33j";
|
||||
buildDepends = [ base colour containers filepath semigroups ];
|
||||
testDepends = [
|
||||
base Cabal colour filepath HUnit semigroups test-framework
|
||||
test-framework-hunit
|
||||
base Cabal colour containers deepseq filepath HUnit semigroups
|
||||
tasty tasty-hunit testpack
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://chiselapp.com/user/mwm/repository/OpenSCAD/";
|
||||
|
@ -17755,8 +17754,8 @@ self: {
|
|||
({ mkDerivation, base, c2hs, mtl, openal }:
|
||||
mkDerivation {
|
||||
pname = "al";
|
||||
version = "0.1.3";
|
||||
sha256 = "1vrlamzc9761jf0pjbdldxhv467wqc7zvk0cq5gcmq3qd281yj6m";
|
||||
version = "0.1.3.1";
|
||||
sha256 = "1p6l64p52d0sznzkig1jczwfqs8wfx22ic40kfpai8icqx357v08";
|
||||
buildDepends = [ base mtl ];
|
||||
buildTools = [ c2hs ];
|
||||
extraLibraries = [ openal ];
|
||||
|
@ -22820,8 +22819,8 @@ self: {
|
|||
({ mkDerivation, base, ghc-prim, hspec }:
|
||||
mkDerivation {
|
||||
pname = "base-orphans";
|
||||
version = "0.1.0";
|
||||
sha256 = "1spxilfbh8f57r67ygx2ahxz8jj5h1l2cb51l0rb1zlpvhlcs927";
|
||||
version = "0.2.0";
|
||||
sha256 = "12xakv3vkgmdrgv6w5qddwkgyz2vw902fbps3gd334nzhgbxciwn";
|
||||
buildDepends = [ base ghc-prim ];
|
||||
testDepends = [ base hspec ];
|
||||
homepage = "https://github.com/haskell-compat/base-orphans";
|
||||
|
@ -40092,8 +40091,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "diagrams-cairo";
|
||||
version = "1.3";
|
||||
sha256 = "0blhndk4anifh34k9zgh86fyihfywckpnacpclbb92g75r93fmga";
|
||||
version = "1.3.0.1";
|
||||
sha256 = "04zcyvirlwzg4zrdrassxhfpfmp0hg263pzdi904nv2qp1idayqi";
|
||||
buildDepends = [
|
||||
base bytestring cairo colour containers data-default-class
|
||||
diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl
|
||||
|
@ -40357,16 +40356,16 @@ self: {
|
|||
({ mkDerivation, base, bytestring, containers, data-default-class
|
||||
, diagrams-core, diagrams-lib, filepath, FontyFruity, hashable
|
||||
, JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split
|
||||
, statestack, unix
|
||||
, unix
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "diagrams-rasterific";
|
||||
version = "1.3.0.0";
|
||||
sha256 = "1hr5hddf6jv5cr4s8rxlmwn4krxgyz84jfmg1xsdrjrv0cmbifhw";
|
||||
version = "1.3.1.0";
|
||||
sha256 = "0as845zjd3wwixzgiy9vv68ginscsn5194966nhch9mbwxm32ljb";
|
||||
buildDepends = [
|
||||
base bytestring containers data-default-class diagrams-core
|
||||
diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl
|
||||
optparse-applicative Rasterific split statestack unix
|
||||
optparse-applicative Rasterific split unix
|
||||
];
|
||||
homepage = "http://projects.haskell.org/diagrams/";
|
||||
description = "Rasterific backend for diagrams";
|
||||
|
@ -57223,8 +57222,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "handa-gdata";
|
||||
version = "0.7.0.2";
|
||||
sha256 = "0h75qj05hpdyl9x54rcb3sqzzzyby57g2aihjgawif2zg7wif7a7";
|
||||
version = "0.7.0.3";
|
||||
sha256 = "1rm61kzvy8vrqmpa82y98hdf3dhqxkq9yh583p0l48zfj28ljh91";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
@ -63284,8 +63283,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "highlighting-kate";
|
||||
version = "0.5.14";
|
||||
sha256 = "0hpg2f660s035gj0fzy42s52adgqlgssn7pf2k0bcxml3qxf3jnr";
|
||||
version = "0.5.15";
|
||||
sha256 = "0ig9yz7cd08wkvhbfw8rlg4flclsk2lqqx0zkl8721zgviqj9rg4";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
@ -68146,20 +68145,17 @@ self: {
|
|||
|
||||
"hsini" = callPackage
|
||||
({ mkDerivation, base, bytestring, containers, HUnit, mtl, parsec
|
||||
, QuickCheck, test-framework, test-framework-hunit
|
||||
, test-framework-quickcheck2, test-framework-th
|
||||
, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, tasty-th
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "hsini";
|
||||
version = "0.3.1";
|
||||
sha256 = "06cys4i1nsic13dkp5jgammm3qykzizlnp6wdka2vl699rvnzaaf";
|
||||
version = "0.4.2";
|
||||
sha256 = "1zkrfc2zyhcwy7l1k8kn0k2qv6jkxw0d6h6bifzh6d5h01ws72mr";
|
||||
buildDepends = [ base bytestring containers mtl parsec ];
|
||||
testDepends = [
|
||||
base bytestring containers HUnit mtl parsec QuickCheck
|
||||
test-framework test-framework-hunit test-framework-quickcheck2
|
||||
test-framework-th
|
||||
base bytestring containers HUnit mtl parsec QuickCheck tasty
|
||||
tasty-hunit tasty-quickcheck tasty-th
|
||||
];
|
||||
jailbreak = true;
|
||||
description = "Package for user configuration files (INI)";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
|
@ -68589,8 +68585,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "hspec";
|
||||
version = "2.1.5";
|
||||
sha256 = "0lj8inhp0lxh23ayc3wcj5c7rslwr4q6s6wqswhda0v3cz3lfmsc";
|
||||
version = "2.1.6";
|
||||
sha256 = "0ych09pli7v3mhfmvr6c0milvcmxf8bk1jf528z9r9halgjg18vh";
|
||||
buildDepends = [
|
||||
base hspec-core hspec-discover hspec-expectations HUnit QuickCheck
|
||||
transformers
|
||||
|
@ -68660,8 +68656,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "hspec-core";
|
||||
version = "2.1.5";
|
||||
sha256 = "1za9ybkcqrzgrmqvzijvw471yk5kjhp0pr0n47n4f4cy0ha7l0fb";
|
||||
version = "2.1.6";
|
||||
sha256 = "0ymgsvl9bq96b7ln4x3yqj5pkla7683xpgg1mp0z9nc70kdzq1w5";
|
||||
buildDepends = [
|
||||
ansi-terminal async base deepseq hspec-expectations HUnit
|
||||
QuickCheck quickcheck-io random setenv tf-random time transformers
|
||||
|
@ -68680,8 +68676,8 @@ self: {
|
|||
({ mkDerivation, base, directory, filepath, hspec-meta }:
|
||||
mkDerivation {
|
||||
pname = "hspec-discover";
|
||||
version = "2.1.5";
|
||||
sha256 = "03bs5gxzhn605f8k7wdm629kzsmxy5mjb1v834q69f3w1iczx304";
|
||||
version = "2.1.6";
|
||||
sha256 = "0vjgnh4g4sg73n4rfgrlqn0xw2mhkpwrwkkccpwik5jfyks7l1jq";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ base directory filepath ];
|
||||
|
@ -71049,6 +71045,7 @@ self: {
|
|||
http-types network rainbow regex-compat text time transformers
|
||||
websockets wuss
|
||||
];
|
||||
jailbreak = true;
|
||||
description = "A program for the button on Reddit";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
|
@ -89038,12 +89035,12 @@ self: {
|
|||
}) {};
|
||||
|
||||
"names-th" = callPackage
|
||||
({ mkDerivation, base, template-haskell }:
|
||||
({ mkDerivation, base, containers, template-haskell }:
|
||||
mkDerivation {
|
||||
pname = "names-th";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "05ghdjif8r0x8k2qqixh2wzzq356f80py1nfps6wim8g9sv1h5rc";
|
||||
buildDepends = [ base template-haskell ];
|
||||
version = "0.1.0.1";
|
||||
sha256 = "1bqbh6751lmiiwvdvry796lzzbjkk8x1lhylkh61l6ycdib2qxjq";
|
||||
buildDepends = [ base containers template-haskell ];
|
||||
homepage = "http://khibino.github.io/haskell-relational-record/";
|
||||
description = "Manipulate name strings for TH";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -97228,6 +97225,20 @@ self: {
|
|||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"poly-arity" = callPackage
|
||||
({ mkDerivation, base, constraints, HList, hspec, QuickCheck
|
||||
, quickcheck-instances
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "poly-arity";
|
||||
version = "0.0.3";
|
||||
sha256 = "1laywdj9bifh4mqb6farlzvp4cp3f4vgbvd9dnnhyndzh3sp3p5b";
|
||||
buildDepends = [ base constraints HList ];
|
||||
testDepends = [ base hspec QuickCheck quickcheck-instances ];
|
||||
description = "Tools for working with functions of undetermined arity";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"polyToMonoid" = callPackage
|
||||
({ mkDerivation, base }:
|
||||
mkDerivation {
|
||||
|
@ -98224,16 +98235,14 @@ self: {
|
|||
}) {};
|
||||
|
||||
"pred-trie" = callPackage
|
||||
({ mkDerivation, base, bifunctors, hspec, QuickCheck
|
||||
, quickcheck-instances, semigroups
|
||||
({ mkDerivation, base, hspec, QuickCheck, quickcheck-instances
|
||||
, semigroups
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "pred-trie";
|
||||
version = "0.0.10";
|
||||
revision = "1";
|
||||
sha256 = "0kjifpaj7by1h9x17j2pfpvx5200s905n4hzcqdgswl28fbp83aa";
|
||||
editedCabalFile = "fc3f5f2ed8de7e5df119507504da00b7c056306b1abe3bd5291dfd48cd6c9083";
|
||||
buildDepends = [ base bifunctors semigroups ];
|
||||
version = "0.0.10.2";
|
||||
sha256 = "1wh53dswpn4prkbkn87aqv6vbbf651dwy1avqx261jg3w4hg8i96";
|
||||
buildDepends = [ base semigroups ];
|
||||
testDepends = [ base hspec QuickCheck quickcheck-instances ];
|
||||
description = "Predicative tries";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -98257,10 +98266,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "prednote";
|
||||
version = "0.32.0.6";
|
||||
sha256 = "0ammlm2dfhjmgy2ackrk4gvwgxz8sph8d2n4pwk2vl17hy024dbj";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
version = "0.34.0.0";
|
||||
sha256 = "09qbzr1rb2nbhwa8mmynv4lskz4l9339sprjy03v2ar06vz8f37k";
|
||||
buildDepends = [
|
||||
base bytestring containers contravariant rainbow split text
|
||||
transformers
|
||||
|
@ -101135,15 +101142,14 @@ self: {
|
|||
}) {};
|
||||
|
||||
"rainbow" = callPackage
|
||||
({ mkDerivation, base, bytestring, process, QuickCheck, text }:
|
||||
({ mkDerivation, base, bytestring, lens, process, QuickCheck, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "rainbow";
|
||||
version = "0.22.0.2";
|
||||
sha256 = "0bzjh7j0ckdzvmfb29pi1l7h28hg77rykwj4bndzi55mbqkabrs9";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ base bytestring process text ];
|
||||
testDepends = [ base bytestring process QuickCheck text ];
|
||||
version = "0.24.0.0";
|
||||
sha256 = "1ksgnxh8j6rrcpkkzwh4qj1p9npanb75xz9wacjxhd91y26zfzdd";
|
||||
buildDepends = [ base bytestring lens process text ];
|
||||
testDepends = [ base bytestring lens process QuickCheck text ];
|
||||
homepage = "https://www.github.com/massysett/rainbow";
|
||||
description = "Print text to terminal with colors and effects";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -101171,8 +101177,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "rainbox";
|
||||
version = "0.12.0.0";
|
||||
sha256 = "1y011kqgy0fpj0ilhf7xf3b3la6wwx864bg6kdfz4x14j98qhvxd";
|
||||
version = "0.14.0.0";
|
||||
sha256 = "0fdqw0d1n2br8gm0rdmnmzkn6dwmljkcgz0w1y6wy62cijwqzz52";
|
||||
buildDepends = [ base bytestring containers rainbow text ];
|
||||
testDepends = [
|
||||
base bytestring containers QuickCheck rainbow tasty
|
||||
|
@ -105594,12 +105600,11 @@ self: {
|
|||
({ mkDerivation, base, c2hs, rtlsdr }:
|
||||
mkDerivation {
|
||||
pname = "rtlsdr";
|
||||
version = "0.1.0.3";
|
||||
sha256 = "0v1vm73f1wn3lcxqlih5c7cj50g8ffbz8fcya0zvs1ab4kxxnrnv";
|
||||
version = "0.1.0.4";
|
||||
sha256 = "090m8qsj9g0xr8ybyiik6vrc9j7bvgmgp42vznank3nklrmkxbgz";
|
||||
buildDepends = [ base ];
|
||||
buildTools = [ c2hs ];
|
||||
extraLibraries = [ rtlsdr ];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/adamwalker/hrtlsdr";
|
||||
description = "Bindings to librtlsdr";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -118252,8 +118257,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "tellbot";
|
||||
version = "0.5.1";
|
||||
sha256 = "0c06ayz1r8pcl65af4fishmdsvkia0npyn0dpzj07rrmg5m1313b";
|
||||
version = "0.5.1.1";
|
||||
sha256 = "1djlcpm3kjd7iamdl2s4afy2mfjh1zrzd28r00wbqcich54xq4zv";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
@ -126294,33 +126299,32 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "vcsgui";
|
||||
version = "0.1.1.0";
|
||||
sha256 = "1sjkg1ncmpymv9m5ag1f4ia4pdak05bgb03d28jd84p24qvshqyk";
|
||||
version = "0.1.2.0";
|
||||
sha256 = "0wqvd57n74fps2cybn970fgag2bxz8y8wwx4hb3dz7znpqzlp7y8";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
base directory filepath gtk3 mtl process text vcswrapper
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/forste/haskellVCSGUI";
|
||||
description = "GUI library for source code management systems";
|
||||
license = "GPL";
|
||||
}) {};
|
||||
|
||||
"vcswrapper" = callPackage
|
||||
({ mkDerivation, base, directory, filepath, hxt, mtl, parsec
|
||||
, process, split, text
|
||||
({ mkDerivation, base, containers, directory, filepath, hxt, mtl
|
||||
, parsec, process, split, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "vcswrapper";
|
||||
version = "0.1.1";
|
||||
sha256 = "056gdgmyprvbz61gfffkpwfyh4m7f9fnglk69jp4xh4jfx1wr7ni";
|
||||
version = "0.1.2";
|
||||
sha256 = "1rbmlfg6kf7b1njfwnd85shlhw8b65j53zsrcn250baj8z0x0p9s";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
base directory filepath hxt mtl parsec process split text
|
||||
base containers directory filepath hxt mtl parsec process split
|
||||
text
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/forste/haskellVCSWrapper";
|
||||
description = "Wrapper for source code management systems";
|
||||
license = "GPL";
|
||||
|
|
Loading…
Reference in a new issue