Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

idrisPackages.heyting-algebra: remove

-29
-2
pkgs/development/idris-modules/default.nix
··· 103 103 104 104 html = callPackage ./html.nix {}; 105 105 106 - heyting-algebra = callPackage ./heyting-algebra.nix {}; 107 - 108 106 hezarfen = callPackage ./hezarfen.nix {}; 109 107 110 108 hrtime = callPackage ./hrtime.nix {};
-27
pkgs/development/idris-modules/heyting-algebra.nix
··· 1 - { build-idris-package 2 - , fetchFromGitHub 3 - , contrib 4 - , lib 5 - }: 6 - build-idris-package { 7 - name = "heyting-algebra"; 8 - version = "2017-08-18"; 9 - 10 - idrisDeps = [ contrib ]; 11 - 12 - src = fetchFromGitHub { 13 - owner = "Risto-Stevcev"; 14 - repo = "idris-heyting-algebra"; 15 - rev = "2c814c48246a5e19bff66e64a753208c7d59d397"; 16 - sha256 = "199cvhxiimlhchvsc66zwn0dls78f9lamam256ad65mv4cjmxv40"; 17 - }; 18 - 19 - meta = { 20 - description = "Interfaces for heyting algebras and verified bounded join and meet semilattices"; 21 - homepage = https://github.com/Risto-Stevcev/idris-heyting-algebra; 22 - license = lib.licenses.mit; 23 - maintainers = [ lib.maintainers.brainrape ]; 24 - }; 25 - 26 - broken = true; 27 - }