nixpkgs/pkgs/development/idris-modules/union_type.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
517 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "union_type";
2018-03-16 11:40:17 +00:00
version = "2018-01-30";
src = fetchFromGitHub {
owner = "berewt";
repo = "UnionType";
rev = "f7693036237585fe324a815a96ad101d9659c689";
sha256 = "1ky0h03kja2y1fjg18j46akw03wi5ng80pghh2j3ib6hxlg1rbs7";
};
meta = {
description = "UnionType in Idris";
homepage = "https://github.com/berewt/UnionType";
2018-03-16 11:40:17 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}