mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 11:32:03 +00:00
19 lines
491 B
Nix
19 lines
491 B
Nix
{ cabal, stm }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "monad-loops";
|
|
version = "0.3.3.0";
|
|
sha256 = "06v8wnkbjrpsy47shjy2bd8asbw6d5rgzy8z5q0jwdhira42h3v1";
|
|
buildDepends = [ stm ];
|
|
meta = {
|
|
homepage = "https://github.com/mokus0/monad-loops";
|
|
description = "Monadic loops";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|