pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / idris-modules / software_foundations.nix
blobcbbf959576f369fe3ca3fb2cf7f1fca88b650855
1 { build-idris-package
2 , fetchFromGitHub
3 , pruviloj
4 , lib
5 }:
6 build-idris-package  {
7   pname = "software_foundations";
8   version = "2017-11-04";
10   idrisDeps = [ pruviloj ];
12   src = fetchFromGitHub {
13     owner = "idris-hackers";
14     repo = "software-foundations";
15     rev = "eaa63d1a572c78e7ce68d27fd49ffdc01457e720";
16     sha256 = "1rkjm0x79n1r3ah041a5bik7sc3rvqs42a2c3g139hlg5xd028xf";
17   };
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   };