summary refs log tree commit diff
path: root/pkgs/development/idris-modules/software_foundations.nix
blob: 577482433029ca282f5fe3cd2406a1c3551c7a4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ build-idris-package
, fetchFromGitHub
, pruviloj
, lib
}:
build-idris-package  {
  name = "software_foundations";
  version = "2017-11-04";

  idrisDeps = [ pruviloj ];

  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;
    maintainers = [ lib.maintainers.brainrape ];
  };
}