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

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

25 lines
591 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, pruviloj
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "software_foundations";
2018-03-16 11:40:17 +00:00
version = "2017-11-04";
2018-07-02 03:18:21 +00:00
idrisDeps = [ pruviloj ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "idris-hackers";
repo = "software-foundations";
rev = "eaa63d1a572c78e7ce68d27fd49ffdc01457e720";
sha256 = "1rkjm0x79n1r3ah041a5bik7sc3rvqs42a2c3g139hlg5xd028xf";
};
meta = {
description = "Code for Software Foundations in Idris";
homepage = "https://github.com/idris-hackers/software-foundations";
2018-03-16 11:40:17 +00:00
maintainers = [ lib.maintainers.brainrape ];
};
}