depot/pkgs/development/idris-modules/smproc.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
599 B
Nix

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "smproc";
version = "2018-02-08";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "jameshaydon";
repo = "smproc";
rev = "b292d6c94fe005bcd984b8e5134b6f99933aa0af";
sha256 = "02gqa2a32dwrvgz6pwsg8bniszbzwxlkzm53fq81sz3l9ja8ax1n";
};
meta = {
description = "Well-typed symmetric-monoidal category of concurrent processes";
homepage = "https://github.com/jameshaydon/smproc";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}