nixpkgs/pkgs/development/libraries/haskell/stm-delay/default.nix
2014-11-24 13:00:53 +00:00

19 lines
582 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, stm }:
cabal.mkDerivation (self: {
pname = "stm-delay";
version = "0.1.1.1";
sha256 = "0cla21v89gcvmr1iwzibq13v1yq02xg4h6k9l6kcprj7mhd5hcmi";
buildDepends = [ stm ];
testDepends = [ stm ];
meta = {
homepage = "https://github.com/joeyadams/haskell-stm-delay";
description = "Updatable one-shot timer polled with STM";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ ocharles ];
};
})