mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
haskellPackages.patch: back-pin patch to fix build
This commit is contained in:
parent
e233468d9f
commit
a49a073fc0
2 changed files with 69 additions and 2 deletions
|
@ -87,6 +87,10 @@ default-package-overrides:
|
|||
- dhall-nix < 1.1.24
|
||||
# Temporarily forbid distribution-nixpkgs updates until cabal2nix supports the new version
|
||||
- distribution-nixpkgs < 1.7.0
|
||||
# patch is primarily used by reflex packages not all of which are patch 0.0.7 compatible yet
|
||||
- patch < 0.0.7
|
||||
- reflex < 0.8.2.1
|
||||
- reflex-dom-core < 0.7.0.2
|
||||
|
||||
extra-packages:
|
||||
- aeson < 2 # required by pantry-0.5.2
|
||||
|
|
|
@ -211097,6 +211097,29 @@ self: {
|
|||
}) {};
|
||||
|
||||
"patch" = callPackage
|
||||
({ mkDerivation, base, constraints-extras, containers
|
||||
, dependent-map, dependent-sum, directory, filemanip, filepath
|
||||
, hedgehog, hlint, HUnit, indexed-traversable, lens
|
||||
, monoidal-containers, semialign, semigroupoids, these
|
||||
, transformers, witherable
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "patch";
|
||||
version = "0.0.6.0";
|
||||
sha256 = "0wgxmk9vfrgnq5vg93jwzkszxmyrk91b36fnnlm8qr6mlg7j8m0z";
|
||||
libraryHaskellDepends = [
|
||||
base constraints-extras containers dependent-map dependent-sum
|
||||
indexed-traversable lens monoidal-containers semialign
|
||||
semigroupoids these transformers witherable
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base containers directory filemanip filepath hedgehog hlint HUnit
|
||||
];
|
||||
description = "Data structures for describing changes to other data structures";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"patch_0_0_7_0" = callPackage
|
||||
({ mkDerivation, base, commutative-semigroups, constraints-extras
|
||||
, containers, dependent-map, dependent-sum, directory, filemanip
|
||||
, filepath, hedgehog, hlint, HUnit, indexed-traversable, lens
|
||||
|
@ -211118,6 +211141,7 @@ self: {
|
|||
];
|
||||
description = "Data structures for describing changes to other data structures";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"patch-combinators" = callPackage
|
||||
|
@ -222394,8 +222418,6 @@ self: {
|
|||
];
|
||||
description = "PowerDNS API bindings for api/v1";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"powermate" = callPackage
|
||||
|
@ -234533,6 +234555,46 @@ self: {
|
|||
}) {};
|
||||
|
||||
"reflex" = callPackage
|
||||
({ mkDerivation, base, bifunctors, comonad, constraints
|
||||
, constraints-extras, containers, criterion, data-default, deepseq
|
||||
, dependent-map, dependent-sum, directory, exception-transformers
|
||||
, filemanip, filepath, haskell-src-exts, haskell-src-meta, hlint
|
||||
, hspec, lens, loch-th, MemoTrie, mmorph, monad-control
|
||||
, monoidal-containers, mtl, patch, prim-uniq, primitive, process
|
||||
, proctest, profunctors, random, ref-tf, reflection, semialign
|
||||
, semigroupoids, split, stm, syb, template-haskell, text, these
|
||||
, these-lens, time, transformers, unbounded-delays, witherable
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "reflex";
|
||||
version = "0.8.2.0";
|
||||
sha256 = "1hvagxcs413bqairxf77vp19484mxnbfckhd44wv22ncwfh5mq6d";
|
||||
revision = "2";
|
||||
editedCabalFile = "1msjk8bk59dv1pm90l2hxkrl185aj4xblzgc7nkwn7x31ykcnhyw";
|
||||
libraryHaskellDepends = [
|
||||
base bifunctors comonad constraints constraints-extras containers
|
||||
data-default dependent-map dependent-sum exception-transformers
|
||||
haskell-src-exts haskell-src-meta lens MemoTrie mmorph
|
||||
monad-control monoidal-containers mtl patch prim-uniq primitive
|
||||
profunctors random ref-tf reflection semialign semigroupoids stm
|
||||
syb template-haskell these time transformers unbounded-delays
|
||||
witherable
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bifunctors constraints constraints-extras containers deepseq
|
||||
dependent-map dependent-sum directory filemanip filepath hlint
|
||||
hspec lens monoidal-containers mtl patch proctest ref-tf semialign
|
||||
split text these these-lens transformers witherable
|
||||
];
|
||||
benchmarkHaskellDepends = [
|
||||
base containers criterion deepseq dependent-map dependent-sum
|
||||
loch-th mtl primitive process ref-tf split stm time transformers
|
||||
];
|
||||
description = "Higher-order Functional Reactive Programming";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"reflex_0_8_2_1" = callPackage
|
||||
({ mkDerivation, base, bifunctors, commutative-semigroups, comonad
|
||||
, constraints, constraints-extras, containers, criterion
|
||||
, data-default, deepseq, dependent-map, dependent-sum, directory
|
||||
|
@ -234571,6 +234633,7 @@ self: {
|
|||
];
|
||||
description = "Higher-order Functional Reactive Programming";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"reflex-animation" = callPackage
|
||||
|
|
Loading…
Reference in a new issue