1{
2 build-idris-package,
3 fetchFromGitHub,
4 pruviloj,
5 lib,
6}:
7build-idris-package {
8 pname = "software_foundations";
9 version = "2017-11-04";
10
11 idrisDeps = [ pruviloj ];
12
13 src = fetchFromGitHub {
14 owner = "idris-hackers";
15 repo = "software-foundations";
16 rev = "eaa63d1a572c78e7ce68d27fd49ffdc01457e720";
17 sha256 = "1rkjm0x79n1r3ah041a5bik7sc3rvqs42a2c3g139hlg5xd028xf";
18 };
19
20 meta = {
21 description = "Code for Software Foundations in Idris";
22 homepage = "https://github.com/idris-hackers/software-foundations";
23 maintainers = [ lib.maintainers.brainrape ];
24 };
25}