Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • tchoutri/horizon-platform
  • raoulhc/horizon-platform
  • jonge/horizon-platform
  • package-sets/horizon-platform
Show changes
{ mkDerivation, base, lib }:
{ mkDerivation, base, lib, tasty, tasty-hunit, tasty-quickcheck }:
mkDerivation {
pname = "generic-monoid";
version = "0.1.0.1";
sha256 = "cfd072ad70af41c1b94ac24e42e2635f37ed2a54e8f4be871be78b18b66b2adf";
revision = "2";
editedCabalFile = "0p3hk9c6qn5kbgi3a4my3rq5cc43wcl93hx6axgzi5wkvimpv653";
pname = "zigzag";
version = "0.1.0.0";
sha256 = "f538e7db692aa6c760f092473fa69b416207b9e58c8c640c192b98f6778eafb3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
......@@ -16,7 +15,8 @@ mkDerivation {
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Derive monoid instances for product types";
homepage = "https://github.com/byteverse/zigzag";
description = "Zigzag encoding of integers into unsigned integers";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, HUnit, array, base, binary, bytestring, containers
, digest, directory, filepath, lib, mtl, pretty, process, temporary
, text, time, unix, which, zlib
}:
mkDerivation {
pname = "zip-archive";
version = "0.4.3";
sha256 = "68050fa0f139848db0ea422ea9af1a65b652abf5168db7dafaf1bded5b045d05";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array base binary bytestring containers digest directory filepath
mtl pretty text time unix zlib
];
testHaskellDepends = [
base bytestring directory filepath HUnit process temporary time
unix
];
testToolDepends = [ which ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/jgm/zip-archive";
description = "Library for creating and modifying zip archives";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, bytestring, hspec, lib, zlib }:
mkDerivation {
pname = "zlib-bindings";
version = "0.1.1.5";
sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109";
revision = "2";
editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring zlib ];
testHaskellDepends = [ base bytestring hspec QuickCheck zlib ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/snapframework/zlib-bindings";
description = "Low-level bindings to the zlib package";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file