Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 757 B view raw
1{ lib, mkCoqDerivation, coq, hydra-battles, pocklington, version ? null }: 2 3mkCoqDerivation { 4 pname = "goedel"; 5 owner = "coq-community"; 6 7 releaseRev = (v: "v${v}"); 8 9 release."8.12.0".sha256 = "sha256-4lAwWFHGUzPcfHI9u5b+N+7mQ0sLJ8bH8beqQubfFEQ="; 10 release."8.13.0".sha256 = "0sqqkmj6wsk4xmhrnqkhcsbsrqjzn2gnk67nqzgrmjpw5danz8y5"; 11 12 inherit version; 13 defaultVersion = with lib.versions; lib.switch coq.coq-version [ 14 { case = range "8.11" "8.16"; out = "8.13.0"; } 15 ] null; 16 17 propagatedBuildInputs = [ hydra-battles pocklington ]; 18 19 meta = with lib; { 20 description = "The Gödel-Rosser 1st incompleteness theorem in Coq"; 21 maintainers = with maintainers; [ siraben ]; 22 license = licenses.mit; 23 platforms = platforms.unix; 24 }; 25}