4acb425c39
cjdns: https://hydra.nixos.org/build/61134279 jonprl: https://hydra.nixos.org/build/61123711 mate.libmatemixer: https://hydra.nixos.org/build/61126968 dirac: https://hydra.nixos.org/build/61132432 idnkit: https://hydra.nixos.org/build/61123544 trousers: https://hydra.nixos.org/build/61109766 packetdrill: https://hydra.nixos.org/build/61116190 osm2pgsql: https://hydra.nixos.org/build/61118017 nawk: https://hydra.nixos.org/build/61139000
35 lines
951 B
Nix
35 lines
951 B
Nix
{ fetchgit, stdenv, smlnj, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jonprl-${version}";
|
|
version = "0.1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/jonsterling/JonPRL.git";
|
|
deepClone = true;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0czs13syvnw8fz24d075n4pmsyfs8rs8c7ksmvd7cgb3h55fvp4p";
|
|
};
|
|
|
|
buildInputs = [ smlnj which ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
cp bin/.heapimg.* "$out/bin/"
|
|
build/mkexec.sh "${smlnj}/bin/sml" "$out" jonprl
|
|
'';
|
|
|
|
meta = {
|
|
description = "Proof Refinement Logic - Computational Type Theory";
|
|
longDescription = ''
|
|
An proof refinement logic for computational type theory
|
|
based on Brouwer-realizability & meaning explanations.
|
|
Inspired by Nuprl
|
|
'';
|
|
homepage = http://www.jonprl.org/;
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = with stdenv.lib.maintainers; [ puffnfresh ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|