Skip to content

Commit

Permalink
Bump bytestring, text
Browse files Browse the repository at this point in the history
New versions:

* bytestring-0.12.2.0 [old range matches]
* text-2.1.2 [old range matches]
  • Loading branch information
tek committed Jan 11, 2025
1 parent 2d0ab9d commit 04cf068
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 9 deletions.
12 changes: 8 additions & 4 deletions ops/managed.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
versions = {
latest-incipit-base = {
base = "4.19.1.0";
bytestring = "0.12.1.0";
bytestring = "0.12.2.0";
containers = "0.7";
data-default = "0.8.0.0";
stm = "2.5.3.1";
text = "2.1.1";
text = "2.1.2";
};
latest-incipit-core = {
base = "4.19.1.0";
Expand Down Expand Up @@ -83,6 +83,10 @@
version = "0.8.9.2";
hash = "04ki6paqf2hxqd5mr2rgd01mqvd1klg086hy5mmbs5aslniwa3hz";
};
bytestring = {
version = "0.12.2.0";
hash = "1b8nb46ylwi1nxcnvpncm47dw3x91l3avc7za4c6x9snaz1q84kc";
};
containers = {
version = "0.7";
hash = "15i7w8xavx83b0gdiq5a7g3m8k4ghmcy67yhx4b4119x7r4j7w4n";
Expand All @@ -96,8 +100,8 @@
hash = "0lcxifbwxi1fmrnpvlr1ychiy847n51xdhk9y4c9cm55w4nms6bz";
};
text = {
version = "2.1.1";
hash = "0b3cqb7n016gxnkkk94mlkl2z0mgjcl1qilpm62kmr1r9cq7vmz6";
version = "2.1.2";
hash = "0anpr011ga34ggsa4v4xfip5mgbgwr2nfdqsdciz71scgcxbr87g";
};
};
latest-incipit-core = {
Expand Down
36 changes: 31 additions & 5 deletions ops/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,32 @@ mkDerivation {
}
;
}
;
bytestring = {
meta = {
sha256 = "1b8nb46ylwi1nxcnvpncm47dw3x91l3avc7za4c6x9snaz1q84kc";
ver = "0.12.2.0";
};
drv = { mkDerivation, base, deepseq, ghc-prim, lib, QuickCheck, random
, syb, tasty, tasty-bench, tasty-quickcheck, template-haskell
, transformers
}:
mkDerivation {
pname = "bytestring";
version = "0.12.2.0";
src = /nix/store/mkwx4bd9732y4y54qkg1gsv2zj7khkd4-source;
libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ];
testHaskellDepends = [
base deepseq QuickCheck syb tasty tasty-quickcheck template-haskell
transformers
];
benchmarkHaskellDepends = [ base deepseq random tasty-bench ];
homepage = "https://github.com/haskell/bytestring";
description = "Fast, compact, strict and lazy byte strings with a list interface";
license = lib.licenses.bsd3;
}
;
}
;
containers = {
meta = {
Expand Down Expand Up @@ -102,8 +128,8 @@ mkDerivation {
;
text = {
meta = {
sha256 = "0b3cqb7n016gxnkkk94mlkl2z0mgjcl1qilpm62kmr1r9cq7vmz6";
ver = "2.1.1";
sha256 = "0anpr011ga34ggsa4v4xfip5mgbgwr2nfdqsdciz71scgcxbr87g";
ver = "2.1.2";
};
drv = { mkDerivation, array, base, binary, bytestring, containers
, deepseq, directory, filepath, ghc-prim, lib, QuickCheck
Expand All @@ -113,14 +139,14 @@ mkDerivation {
}:
mkDerivation {
pname = "text";
version = "2.1.1";
src = /nix/store/sibrqizv42msgv1av232jwnnsqpyzkrv-source;
version = "2.1.2";
src = /nix/store/q6ahbsdrknkyk2avcsikxylhahmz2bls-source;
libraryHaskellDepends = [
array base binary bytestring deepseq ghc-prim system-cxx-std-lib
template-haskell
];
testHaskellDepends = [
base bytestring deepseq directory ghc-prim QuickCheck tasty
base binary bytestring deepseq directory ghc-prim QuickCheck tasty
tasty-hunit tasty-inspection-testing tasty-quickcheck
template-haskell transformers
];
Expand Down

0 comments on commit 04cf068

Please sign in to comment.