summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/threads/default.nix
blob: 8f5008032f6b63c8baa8b38e3f6cd019fb62d863 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, baseUnicodeSymbols, stm }:

cabal.mkDerivation (self: {
  pname = "threads";
  version = "0.5.0.1";
  sha256 = "0amyaxa70q6v021nab6v3cfqc40mwj5dr2fwla9d4bm6ppmq6lyy";
  buildDepends = [ baseUnicodeSymbols stm ];
  meta = {
    homepage = "https://github.com/basvandijk/threads";
    description = "Fork threads and wait for their result";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})