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
  • jonge/horizon-platform
  • raoulhc/horizon-platform
  • package-sets/horizon-platform
Show changes
Showing with 3 additions and 482 deletions
{ mkDerivation, assoc, base, binary, bytestring, deepseq, ghc-prim
, hashable, lib, text, these, transformers
}:
mkDerivation {
pname = "strict";
version = "0.5";
sha256 = "3f4f0995dec2d520d0e321542f71412dac023658fdab603db04364d75269a0fd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
assoc base binary bytestring deepseq ghc-prim hashable text these
transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-strict/strict";
description = "Strict data types and String IO";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
...@@ -14,7 +14,7 @@ mkDerivation { ...@@ -14,7 +14,7 @@ mkDerivation {
]; ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
......
{ mkDerivation, QuickCheck, base, bytestring, deepseq, hspec, lib
, quickcheck-instances, text, utf8-string
}:
mkDerivation {
pname = "string-conversions";
version = "0.4.0.1";
sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994";
revision = "1";
editedCabalFile = "1g3wxx579mhs2icxngi78pvjfybbk606a6vgns88pg6ws5hrvx4s";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring text utf8-string ];
testHaskellDepends = [
base bytestring deepseq hspec QuickCheck quickcheck-instances text
utf8-string
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/soenkehahn/string-conversions#readme";
description = "Simplifies dealing with different types for strings";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, bytestring, criterion, deepseq
, formatting, haskell-src-exts, haskell-src-meta, hspec, hspec-core
, interpolate, lib, neat-interpolation, quickcheck-instances
, quickcheck-text, quickcheck-unicode, split, template-haskell
, text, text-conversions, unordered-containers, utf8-string
}:
mkDerivation {
pname = "string-interpolate";
version = "0.3.2.1";
sha256 = "392f017d7df229af537f87f79ffef0df5030cc48b77765f0e6c1580db7bbfdd4";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring haskell-src-exts haskell-src-meta split
template-haskell text text-conversions utf8-string
];
testHaskellDepends = [
base bytestring hspec hspec-core QuickCheck quickcheck-instances
quickcheck-text quickcheck-unicode template-haskell text
unordered-containers
];
benchmarkHaskellDepends = [
base bytestring criterion deepseq formatting interpolate
neat-interpolation QuickCheck text
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://gitlab.com/williamyaoh/string-interpolate/blob/master/README.md";
description = "Haskell string/text/bytestring interpolation that just works";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, HUnit, base, lib, template-haskell, text }:
mkDerivation {
pname = "string-qq";
version = "0.0.4";
sha256 = "c85b9c1e27596ea8e765e4b630b7be53c331c51b680ad46cc2d248d3099fdd71";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [ base HUnit text ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "QuasiQuoter for non-interpolated strings, texts and bytestrings";
license = lib.licenses.publicDomain;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, hspec, lib }:
mkDerivation {
pname = "stringbuilder";
version = "0.5.1";
sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec QuickCheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "A writer monad for multi-line string literals";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, array, base, bytestring, containers, lib }:
mkDerivation {
pname = "stringsearch";
version = "0.3.6.6";
sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a";
revision = "1";
editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ array base bytestring containers ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://bitbucket.org/dafis/stringsearch";
description = "Fast searching, splitting and replacing of ByteStrings";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
...@@ -15,7 +15,7 @@ mkDerivation { ...@@ -15,7 +15,7 @@ mkDerivation {
]; ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
......
...@@ -9,7 +9,7 @@ mkDerivation { ...@@ -9,7 +9,7 @@ mkDerivation {
libraryHaskellDepends = [ base bytestring text ]; libraryHaskellDepends = [ base bytestring text ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
......
{ mkDerivation, base, blaze-builder, bytestring, hashable, lib
, text, unordered-containers
}:
mkDerivation {
pname = "svg-builder";
version = "0.1.1";
sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc";
revision = "6";
editedCabalFile = "1cprm8ya1rdid4pz1dk6692mv0kqkaxrsqaxg83bca5z4dkgqi2z";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base blaze-builder bytestring hashable text unordered-containers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/diagrams/svg-builder.git";
description = "DSL for building SVG";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, Cabal, Glob, HUnit, QuickCheck, aeson, aeson-pretty
, base, base-compat-batteries, bytestring, cabal-doctest
, containers, cookie, doctest, generics-sop, hashable, hspec
, hspec-discover, http-media, insert-ordered-containers, lens, lib
, mtl, network, optics-core, optics-th, quickcheck-instances
, scientific, template-haskell, text, time, transformers
, unordered-containers, utf8-string, uuid-types, vector
}:
mkDerivation {
pname = "swagger2";
version = "2.8.7";
sha256 = "917a973aea5369c203decc5d209220fd2e33e6efa188fc7aa49b97482ad43708";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson aeson-pretty base base-compat-batteries bytestring containers
cookie generics-sop hashable http-media insert-ordered-containers
lens mtl network optics-core optics-th QuickCheck scientific
template-haskell text time transformers unordered-containers
uuid-types vector
];
testHaskellDepends = [
aeson base base-compat-batteries bytestring containers doctest Glob
hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck
quickcheck-instances template-haskell text time
unordered-containers utf8-string vector
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/GetShopTV/swagger2";
description = "Swagger 2.0 data model";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, containers, lib, mtl, tasty, tasty-hunit }:
mkDerivation {
pname = "syb";
version = "0.7.2.3";
sha256 = "d0b72daf16a947c4d9cb2d5774072f2153433224a04fd60fad60be9ffac8d91a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base containers mtl tasty tasty-hunit ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB";
description = "Scrap Your Boilerplate";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, filepath, lib, optparse-applicative, path
, path-io
}:
mkDerivation {
pname = "sydtest-discover";
version = "0.0.0.2";
sha256 = "fbc0b1a7bae9a40e9aec7bda706c11f6bb6cbefc840ad2ee350380cb925459d9";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base filepath optparse-applicative path path-io
];
executableHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/sydtest#readme";
description = "Automatic test suite discovery for sydtest";
license = "unknown";
broken = false;
}
\ No newline at end of file
{ mkDerivation, MonadRandom, QuickCheck, async, autodocodec
, autodocodec-yaml, base, bytestring, containers, dlist, envparse
, filepath, lib, mtl, optparse-applicative, path, path-io
, pretty-show, quickcheck-io, random, random-shuffle, safe
, safe-coloured-text, safe-coloured-text-terminfo, stm
, sydtest-discover, text, vector
}:
mkDerivation {
pname = "sydtest";
version = "0.13.0.3";
sha256 = "d17ca944da56d7dfd81e58bedee09242211056b382fb0b581520b35e20164b36";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
async autodocodec autodocodec-yaml base bytestring containers dlist
envparse filepath MonadRandom mtl optparse-applicative path path-io
pretty-show QuickCheck quickcheck-io random random-shuffle safe
safe-coloured-text safe-coloured-text-terminfo stm text vector
];
testHaskellDepends = [
base bytestring path path-io QuickCheck random safe-coloured-text
stm text vector
];
testToolDepends = [ sydtest-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/sydtest#readme";
description = "A modern testing framework for Haskell with good defaults and advanced testing features";
license = "unknown";
broken = false;
}
{ mkDerivation, base, bytestring, chell, lib, system-filepath
, temporary, text, time, transformers, unix
}:
mkDerivation {
pname = "system-fileio";
version = "0.3.16.4";
sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring system-filepath text time unix
];
testHaskellDepends = [
base bytestring chell system-filepath temporary text time
transformers unix
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/fpco/haskell-filesystem";
description = "Consistent filesystem interaction across GHC versions (deprecated)";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, Cabal, QuickCheck, base, bytestring, chell
, chell-quickcheck, deepseq, lib, text
}:
mkDerivation {
pname = "system-filepath";
version = "0.4.14";
sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993";
revision = "1";
editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [ base bytestring deepseq text ];
testHaskellDepends = [
base bytestring chell chell-quickcheck QuickCheck text
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/fpco/haskell-filesystem";
description = "High-level, byte-based file and directory path manipulations (deprecated)";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, csv, html, lib, mtl }:
mkDerivation {
pname = "tabular";
version = "0.2.2.8";
sha256 = "cb7d06eaec7945cd77db2380ed4a9b7a048c5f6abcfba766c328228be033237d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base csv html mtl ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/bgamari/tabular";
description = "Two-dimensional data tables with rendering functions";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, deepseq, lib, template-haskell, transformers
}:
mkDerivation {
pname = "tagged";
version = "0.8.7";
sha256 = "6414eeac27a1633f49e2f78199ced99ce8ce3d70b658cf6d55b1d81ff60cb961";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base deepseq template-haskell transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/tagged";
description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, bytestring, containers, deepseq
, directory, lib, process, text, time
}:
mkDerivation {
pname = "tagsoup";
version = "0.14.8";
sha256 = "ba7e5500d853d29f0675b90655b7fdd032a4a7eee82a56e7ee3ef9949fe93ad5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring containers text ];
testHaskellDepends = [
base bytestring deepseq directory process QuickCheck time
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/ndmitchell/tagsoup#readme";
description = "Parsing and extracting information from (possibly malformed) HTML/XML documents";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, array, base, bytestring, containers
, deepseq, directory, fetchgit, filepath, lib, tasty, tasty-bench
, tasty-quickcheck, time
}:
mkDerivation {
pname = "tar";
version = "0.6.0.0";
src = fetchgit {
url = "https://github.com/locallycompact/tar";
sha256 = "1602fyzgsf5i6lrl6jv8x00qdbm37025ms87ncl7b30dcj2dvqh7";
rev = "107c0b78524acfd0e77e767b83073492008bea0c";
fetchSubmodules = true;
};
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array base bytestring containers deepseq directory filepath time
];
testHaskellDepends = [
array base bytestring containers deepseq directory filepath
QuickCheck tasty tasty-quickcheck time
];
benchmarkHaskellDepends = [
array base bytestring containers deepseq directory filepath
tasty-bench time
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Reading, writing and manipulating \".tar\" archive files.";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file