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