Merge pull request #18866 from acowley/redprl
redprl: init at 2016-09-22
This commit is contained in:
commit
3e0dcb3955
@ -12,6 +12,7 @@
|
|||||||
abbradar = "Nikolay Amiantov <ab@fmap.me>";
|
abbradar = "Nikolay Amiantov <ab@fmap.me>";
|
||||||
aboseley = "Adam Boseley <adam.boseley@gmail.com>";
|
aboseley = "Adam Boseley <adam.boseley@gmail.com>";
|
||||||
abuibrahim = "Ruslan Babayev <ruslan@babayev.com>";
|
abuibrahim = "Ruslan Babayev <ruslan@babayev.com>";
|
||||||
|
acowley = "Anthony Cowley <acowley@gmail.com>";
|
||||||
adev = "Adrien Devresse <adev@adev.name>";
|
adev = "Adrien Devresse <adev@adev.name>";
|
||||||
Adjective-Object = "Maxwell Huang-Hobbs <mhuan13@gmail.com>";
|
Adjective-Object = "Maxwell Huang-Hobbs <mhuan13@gmail.com>";
|
||||||
adnelson = "Allen Nelson <ithinkican@gmail.com>";
|
adnelson = "Allen Nelson <ithinkican@gmail.com>";
|
||||||
|
26
pkgs/applications/science/logic/redprl/default.nix
Normal file
26
pkgs/applications/science/logic/redprl/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchgit, mlton }:
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "redprl-2016-09-22";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/RedPRL/sml-redprl.git";
|
||||||
|
rev = "3215faf0d494f4ac14d6e10172329a161df192c4";
|
||||||
|
sha256 = "0pcq4q9xy34j7ziwbly4qxccpkcrl92r9y11bv6hdkbzwm1g2a77";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
buildInputs = [ mlton ];
|
||||||
|
builder = builtins.toFile "builder.sh" ''
|
||||||
|
source $stdenv/setup
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp -r $src/* .
|
||||||
|
chmod -R +w src
|
||||||
|
./script/mlton.sh
|
||||||
|
mv ./bin/redprl $out/bin
|
||||||
|
'';
|
||||||
|
meta = {
|
||||||
|
description = "A proof assistant for Nominal Computational Type Theory";
|
||||||
|
homepage = "http://www.redprl.org/";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.acowley ];
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -17623,6 +17623,8 @@ in
|
|||||||
|
|
||||||
putty = callPackage ../applications/networking/remote/putty { };
|
putty = callPackage ../applications/networking/remote/putty { };
|
||||||
|
|
||||||
|
redprl = callPackage ../applications/science/logic/redprl { };
|
||||||
|
|
||||||
retroarchBare = callPackage ../misc/emulators/retroarch { };
|
retroarchBare = callPackage ../misc/emulators/retroarch { };
|
||||||
|
|
||||||
retroarch = wrapRetroArch { retroarch = retroarchBare; };
|
retroarch = wrapRetroArch { retroarch = retroarchBare; };
|
||||||
|
Loading…
Reference in New Issue
Block a user