Skip to content

Commit

Permalink
Bump polysemy
Browse files Browse the repository at this point in the history
New versions:

* polysemy-1.9.2.0 [old range matches]
  • Loading branch information
tek committed Jun 8, 2024
1 parent 728a6be commit 2facb04
Show file tree
Hide file tree
Showing 2 changed files with 188 additions and 2 deletions.
28 changes: 26 additions & 2 deletions ops/managed.nix
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
base = "4.19.1.0";
hedgehog = "1.4";
incipit-core = "0.6.0.0";
polysemy = "1.9.1.3";
polysemy = "1.9.2.0";
polysemy-plugin = "0.4.5.2";
polysemy-resume = "0.9.0.0";
polysemy-test = "0.10.0.0";
Expand All @@ -171,7 +171,7 @@
incipit-core = "0.6.0.0";
path = "0.9.5";
path-io = "1.8.2";
polysemy = "1.9.1.3";
polysemy = "1.9.2.0";
polysemy-plugin = "0.4.5.2";
polysemy-resume = "0.9.0.0";
polysemy-test = "0.10.0.0";
Expand Down Expand Up @@ -268,6 +268,10 @@
};
overrides = {
latest-polysemy-conc = {
cabal-doctest = {
version = "1.0.9";
hash = "0irxfxy1qw7sif4408xdhqycddb4hs3hcf6xfxm65glsnmnmwl2i";
};
incipit-base = {
version = "0.6.0.0";
hash = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
Expand All @@ -276,6 +280,14 @@
version = "0.6.0.0";
hash = "0gmngb4pinkpbsnclrgs6x016ffnls1g4xzz0hdzg2rpyl63d5ph";
};
polysemy = {
version = "1.9.2.0";
hash = "00dq1ffsd9bld5zag4l2qssbmm4yb234cirsn5f19fmx43cdgngl";
};
polysemy-plugin = {
version = "0.4.5.2";
hash = "18y0nfx7x7am7cvj9wwhzal9bqv6sj7ckvmkd16blx4c2nqyikp9";
};
polysemy-resume = {
version = "0.9.0.0";
hash = "1achlwdkycbgjlcdkq641r481m1bl9rb7fklbwfb9nnb6xmqyzms";
Expand All @@ -290,6 +302,10 @@
};
};
latest-polysemy-process = {
cabal-doctest = {
version = "1.0.9";
hash = "0irxfxy1qw7sif4408xdhqycddb4hs3hcf6xfxm65glsnmnmwl2i";
};
incipit-base = {
version = "0.6.0.0";
hash = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
Expand All @@ -302,6 +318,14 @@
version = "1.8.2";
hash = "063ma7gzqr5c6s8a1yv72jgll3xdajvgclbc8w0ddmqgcrb62x2k";
};
polysemy = {
version = "1.9.2.0";
hash = "00dq1ffsd9bld5zag4l2qssbmm4yb234cirsn5f19fmx43cdgngl";
};
polysemy-plugin = {
version = "0.4.5.2";
hash = "18y0nfx7x7am7cvj9wwhzal9bqv6sj7ckvmkd16blx4c2nqyikp9";
};
polysemy-resume = {
version = "0.9.0.0";
hash = "1achlwdkycbgjlcdkq641r481m1bl9rb7fklbwfb9nnb6xmqyzms";
Expand Down
162 changes: 162 additions & 0 deletions ops/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ ghc98 = {
hls = {
};
latest-polysemy-conc = {
cabal-doctest = {
meta = {
sha256 = "0irxfxy1qw7sif4408xdhqycddb4hs3hcf6xfxm65glsnmnmwl2i";
ver = "1.0.9";
};
drv = { mkDerivation, base, Cabal, directory, filepath, lib }:
mkDerivation {
pname = "cabal-doctest";
version = "1.0.9";
src = /nix/store/zvv4lgrqgjx826ryk6697617pd3xpr7s-source;
libraryHaskellDepends = [ base Cabal directory filepath ];
homepage = "https://github.com/haskellari/cabal-doctest";
description = "A Setup.hs helper for running doctests";
license = lib.licenses.bsd3;
}
;
}
;
incipit-base = {
meta = {
sha256 = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
Expand Down Expand Up @@ -49,6 +67,69 @@ mkDerivation {
}
;
}
;
polysemy = {
meta = {
sha256 = "00dq1ffsd9bld5zag4l2qssbmm4yb234cirsn5f19fmx43cdgngl";
ver = "1.9.2.0";
};
drv = { mkDerivation, async, base, Cabal, cabal-doctest, containers
, doctest, first-class-families, hspec, hspec-discover
, inspection-testing, lib, mtl, stm, syb, template-haskell
, th-abstraction, transformers, type-errors, unagi-chan
}:
mkDerivation {
pname = "polysemy";
version = "1.9.2.0";
src = /nix/store/rrd35xyn2gzkvqid5k43dsqw5z0yb21d-source;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
async base containers first-class-families mtl stm syb
template-haskell th-abstraction transformers type-errors unagi-chan
];
testHaskellDepends = [
async base containers doctest first-class-families hspec
hspec-discover inspection-testing mtl stm syb template-haskell
th-abstraction transformers type-errors unagi-chan
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/polysemy-research/polysemy#readme";
description = "Higher-order, low-boilerplate free monads";
license = lib.licenses.bsd3;
}
;
}
;
polysemy-plugin = {
meta = {
sha256 = "18y0nfx7x7am7cvj9wwhzal9bqv6sj7ckvmkd16blx4c2nqyikp9";
ver = "0.4.5.2";
};
drv = { mkDerivation, base, Cabal, cabal-doctest, containers, doctest
, ghc, ghc-tcplugins-extra, hspec, hspec-discover
, inspection-testing, lib, polysemy, should-not-typecheck, syb
, transformers
}:
mkDerivation {
pname = "polysemy-plugin";
version = "0.4.5.2";
src = /nix/store/l68cq0g74sq0ws1plbgva2ry1psk5s21-source;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base containers ghc ghc-tcplugins-extra polysemy syb transformers
];
testHaskellDepends = [
base containers doctest ghc ghc-tcplugins-extra hspec
hspec-discover inspection-testing polysemy should-not-typecheck syb
transformers
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/polysemy-research/polysemy#readme";
description = "Disambiguate obvious uses of effects";
license = lib.licenses.bsd3;
}
;
}
;
polysemy-resume = {
meta = {
Expand Down Expand Up @@ -129,6 +210,24 @@ mkDerivation {
;
};
latest-polysemy-process = {
cabal-doctest = {
meta = {
sha256 = "0irxfxy1qw7sif4408xdhqycddb4hs3hcf6xfxm65glsnmnmwl2i";
ver = "1.0.9";
};
drv = { mkDerivation, base, Cabal, directory, filepath, lib }:
mkDerivation {
pname = "cabal-doctest";
version = "1.0.9";
src = /nix/store/zvv4lgrqgjx826ryk6697617pd3xpr7s-source;
libraryHaskellDepends = [ base Cabal directory filepath ];
homepage = "https://github.com/haskellari/cabal-doctest";
description = "A Setup.hs helper for running doctests";
license = lib.licenses.bsd3;
}
;
}
;
incipit-base = {
meta = {
sha256 = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
Expand Down Expand Up @@ -193,6 +292,69 @@ mkDerivation {
}
;
}
;
polysemy = {
meta = {
sha256 = "00dq1ffsd9bld5zag4l2qssbmm4yb234cirsn5f19fmx43cdgngl";
ver = "1.9.2.0";
};
drv = { mkDerivation, async, base, Cabal, cabal-doctest, containers
, doctest, first-class-families, hspec, hspec-discover
, inspection-testing, lib, mtl, stm, syb, template-haskell
, th-abstraction, transformers, type-errors, unagi-chan
}:
mkDerivation {
pname = "polysemy";
version = "1.9.2.0";
src = /nix/store/rrd35xyn2gzkvqid5k43dsqw5z0yb21d-source;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
async base containers first-class-families mtl stm syb
template-haskell th-abstraction transformers type-errors unagi-chan
];
testHaskellDepends = [
async base containers doctest first-class-families hspec
hspec-discover inspection-testing mtl stm syb template-haskell
th-abstraction transformers type-errors unagi-chan
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/polysemy-research/polysemy#readme";
description = "Higher-order, low-boilerplate free monads";
license = lib.licenses.bsd3;
}
;
}
;
polysemy-plugin = {
meta = {
sha256 = "18y0nfx7x7am7cvj9wwhzal9bqv6sj7ckvmkd16blx4c2nqyikp9";
ver = "0.4.5.2";
};
drv = { mkDerivation, base, Cabal, cabal-doctest, containers, doctest
, ghc, ghc-tcplugins-extra, hspec, hspec-discover
, inspection-testing, lib, polysemy, should-not-typecheck, syb
, transformers
}:
mkDerivation {
pname = "polysemy-plugin";
version = "0.4.5.2";
src = /nix/store/l68cq0g74sq0ws1plbgva2ry1psk5s21-source;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base containers ghc ghc-tcplugins-extra polysemy syb transformers
];
testHaskellDepends = [
base containers doctest ghc ghc-tcplugins-extra hspec
hspec-discover inspection-testing polysemy should-not-typecheck syb
transformers
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/polysemy-research/polysemy#readme";
description = "Disambiguate obvious uses of effects";
license = lib.licenses.bsd3;
}
;
}
;
polysemy-resume = {
meta = {
Expand Down

0 comments on commit 2facb04

Please sign in to comment.