mirror of
https://github.com/coot/free-category.git
synced 2024-11-23 09:55:43 +03:00
11 lines
375 B
Nix
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;
|
|
}
|