3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
483 B
Nix
16 lines
483 B
Nix
{ cabal, mtl, stm }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "stateref";
|
|
version = "0.3";
|
|
sha256 = "0hdpw6g255lj7jjvgqwhjdpzmka546vda5qjvry8gjj6nfm91lvx";
|
|
buildDepends = [ mtl stm ];
|
|
meta = {
|
|
homepage = "http://code.haskell.org/~mokus/stateref/";
|
|
description = "Abstraction for things that work like IORef";
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|