pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / idris-modules / descncrunch.nix
blob3c82e23ec7ecbc717f8ce61f1df9d2e80cd63659
1 { build-idris-package
2 , fetchFromGitHub
3 , pruviloj
4 , lib
5 }:
6 build-idris-package  {
7   pname = "descncrunch";
8   version = "2017-11-15";
10   idrisDeps = [ pruviloj ];
12   src = fetchFromGitHub {
13     owner = "ahmadsalim";
14     repo = "desc-n-crunch";
15     rev = "261d9718504b8f0572c4fe7ae407a0231779bcab";
16     sha256 = "09fh334aga1z1hbw79507rdv7qsh0mqzb89lvpznn7vzi9zkl8fx";
17   };
19   meta = {
20     description = "Descriptions, levitation, and reflecting the elaborator";
21     homepage = "https://github.com/ahmadsalim/desc-n-crunch";
22     license = lib.licenses.gpl3;
23     maintainers = [ lib.maintainers.brainrape ];
24     broken = true;
25   };