1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-23 09:55:43 +03:00
free-category/nix/stm-2.4.5.1.nix
Marcin Szamotulski 5b2cc8e2b6
Build with ghc802
2018-10-22 23:46:22 +02:00

11 lines
375 B
Nix

{ mkDerivation, array, base, stdenv }:
mkDerivation {
pname = "stm";
version = "2.4.5.1";
sha256 = "6cf0c280062736c9980ba1c2316587648b8e9d4e4ecc5aed16a41979c0a3a3f4";
libraryHaskellDepends = [ array base ];
homepage = "https://wiki.haskell.org/Software_transactional_memory";
description = "Software Transactional Memory";
license = stdenv.lib.licenses.bsd3;
}