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
{ pkgs, ... }:
with pkgs.lib;
_: prev: name: v: if hasAttr name prev then warn "${name} exists in parent set" v else v
This diff is collapsed.
{ mkDerivation { mkDerivation, HUnit, QuickCheck, alex, array, base, containers
, HUnit , deepseq, directory, filepath, happy, hspec, hspec-discover, lib
, QuickCheck , mtl, pretty, process, string-qq, temporary, time, transformers
, alex
, array
, base
, containers
, deepseq
, directory
, filepath
, happy
, hspec
, hspec-discover
, lib
, mtl
, pretty
, process
, string-qq
, temporary
, time
, transformers
}: }:
mkDerivation { mkDerivation {
pname = "BNFC"; pname = "BNFC";
version = "2.9.4.1"; version = "2.9.5";
sha256 = "5e93609c1633e4b6636d0ac2b52c1d35228c13bd704a7849cb4e92b00ce27250"; sha256 = "fa35e9a2a2bd12c3680482a350f57963807ccc9e964a206cb09e5b1a4d02576b";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ libraryHaskellDepends = [
array array base containers deepseq directory filepath mtl pretty process
base string-qq time transformers
containers
deepseq
directory
filepath
mtl
pretty
process
string-qq
time
transformers
]; ];
libraryToolDepends = [ alex happy ]; libraryToolDepends = [ alex happy ];
executableHaskellDepends = [ base ]; executableHaskellDepends = [ base ];
testHaskellDepends = [ testHaskellDepends = [
array array base containers deepseq directory filepath hspec HUnit mtl
base pretty process QuickCheck string-qq temporary time
containers
deepseq
directory
filepath
hspec
HUnit
mtl
pretty
process
QuickCheck
string-qq
temporary
time
]; ];
testToolDepends = [ alex happy hspec-discover ]; testToolDepends = [ alex happy hspec-discover ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
hyperlinkSource = false; hyperlinkSource = false;
homepage = "http://bnfc.digitalgrammars.com/"; homepage = "https://bnfc.digitalgrammars.com/";
description = "A compiler front-end generator"; description = "A compiler front-end generator";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
broken = false; broken = false;
} }
\ No newline at end of file
...@@ -3,13 +3,15 @@ mkDerivation { ...@@ -3,13 +3,15 @@ mkDerivation {
pname = "Boolean"; pname = "Boolean";
version = "0.2.4"; version = "0.2.4";
sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8";
revision = "1";
editedCabalFile = "0q04fgnfgskwsmj3g25vfs39724wh1wjl6m6x08bi9fg9rxcf4rc";
isLibrary = true; isLibrary = true;
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ]; libraryHaskellDepends = [ base ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
...@@ -17,4 +19,4 @@ mkDerivation { ...@@ -17,4 +19,4 @@ mkDerivation {
description = "Generalized booleans and numbers"; description = "Generalized booleans and numbers";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
broken = false; broken = false;
} }
\ No newline at end of file
{ mkDerivation
, Cabal
, Cabal-syntax
, QuickCheck
, base
, containers
, fetchgit
, lib
, pretty
, rere
, tasty
, tasty-quickcheck
, transformers
}:
mkDerivation {
pname = "Cabal-described";
version = "3.9.0.0";
src = fetchgit {
url = "https://gitlab.haskell.org/ghc/packages/Cabal";
sha256 = "13prqza1wk1gc0az8lizrm97w6rwxv5lzvy5a4gahpr2wsliqjfg";
rev = "e9fdb85427ad1ef11a25c8b1f2286614c86a65ff";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/Cabal-described/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
Cabal
Cabal-syntax
containers
pretty
QuickCheck
rere
tasty
tasty-quickcheck
transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Described functionality for types in Cabal";
license = "unknown";
broken = false;
}
{ mkDerivation
, array
, base
, binary
, bytestring
, containers
, deepseq
, directory
, fetchgit
, filepath
, lib
, mtl
, parsec
, pretty
, text
, time
, transformers
, unix
}:
mkDerivation {
pname = "Cabal-syntax";
version = "3.9.0.0";
src = fetchgit {
url = "https://gitlab.haskell.org/ghc/packages/Cabal";
sha256 = "13prqza1wk1gc0az8lizrm97w6rwxv5lzvy5a4gahpr2wsliqjfg";
rev = "e9fdb85427ad1ef11a25c8b1f2286614c86a65ff";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/Cabal-syntax/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
binary
bytestring
containers
deepseq
directory
filepath
mtl
parsec
pretty
text
time
transformers
unix
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.haskell.org/cabal/";
description = "A library for working with .cabal files";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation
, Cabal-syntax
, array
, base
, bytestring
, containers
, deepseq
, directory
, filepath
, lib
, mtl
, parsec
, pretty
, process
, text
, time
, transformers
, unix
}:
mkDerivation {
pname = "Cabal";
version = "3.8.1.0";
sha256 = "7464cbe6c2f3d7e5d0232023a1a7330621f8b24853cb259fc89a2af85b736608";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
setupHaskellDepends = [ mtl parsec ];
libraryHaskellDepends = [
array
base
bytestring
Cabal-syntax
containers
deepseq
directory
filepath
mtl
parsec
pretty
process
text
time
transformers
unix
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.haskell.org/cabal/";
description = "A framework for packaging Haskell software";
license = lib.licenses.bsd3;
broken = false;
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -9,7 +9,7 @@ mkDerivation { ...@@ -9,7 +9,7 @@ mkDerivation {
libraryHaskellDepends = [ base mtl process strict ]; libraryHaskellDepends = [ base mtl process strict ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
...@@ -18,4 +18,4 @@ mkDerivation { ...@@ -18,4 +18,4 @@ mkDerivation {
description = "A small cross-platform library for reading and modifying the system clipboard"; description = "A small cross-platform library for reading and modifying the system clipboard";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
broken = false; broken = false;
} }
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.