Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
{ cabal, parsec }:
|
||||
{ cabal, HUnit, parsec, testFramework, testFrameworkHunit }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "network";
|
||||
version = "2.3.0.13";
|
||||
sha256 = "0xw53czvcw8k49aqxmchc1rcd6pyxp4icwgp64625fnm3l4yjiq7";
|
||||
buildDepends = [ parsec ];
|
||||
testDepends = [ HUnit testFramework testFrameworkHunit ];
|
||||
meta = {
|
||||
homepage = "http://github.com/haskell/network";
|
||||
description = "Low-level networking interface";
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
{ cabal, parsec }:
|
||||
{ cabal, HUnit, parsec, testFramework, testFrameworkHunit }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "network";
|
||||
version = "2.3.1.0";
|
||||
sha256 = "1fp25wkl5cc4kx0jv5w02b7pzgqadjg1yrknzzwsqxc5s3cpyz6l";
|
||||
buildDepends = [ parsec ];
|
||||
testDepends = [ HUnit testFramework testFrameworkHunit ];
|
||||
meta = {
|
||||
homepage = "http://github.com/haskell/network";
|
||||
description = "Low-level networking interface";
|
||||
|
||||
@@ -1,10 +1,15 @@
|
||||
{ cabal, parsec }:
|
||||
{ cabal, HUnit, parsec, testFramework, testFrameworkHunit
|
||||
, testFrameworkQuickcheck2
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "network";
|
||||
version = "2.4.1.2";
|
||||
sha256 = "0f7ykdv7xbsr5m3h2ml0hw3nlbnq785m0gr624pwk2s289jwakdh";
|
||||
buildDepends = [ parsec ];
|
||||
testDepends = [
|
||||
HUnit testFramework testFrameworkHunit testFrameworkQuickcheck2
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/haskell/network";
|
||||
description = "Low-level networking interface";
|
||||
|
||||
Reference in New Issue
Block a user