f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
782 B
Nix
29 lines
782 B
Nix
{ stdenv, fetchgit, mlton }:
|
|
stdenv.mkDerivation {
|
|
name = "redprl-2017-03-28";
|
|
src = fetchgit {
|
|
url = "https://github.com/RedPRL/sml-redprl.git";
|
|
rev = "bdf027de732e4a8d10f9f954389dfff0c822f18b";
|
|
sha256 = "0cihwnd78d3ksxp6mppifm7xpi3fsii5mixvicajy87ggw8z305c";
|
|
fetchSubmodules = true;
|
|
};
|
|
buildInputs = [ mlton ];
|
|
patchPhase = ''
|
|
patchShebangs ./script/
|
|
'';
|
|
buildPhase = ''
|
|
./script/mlton.sh
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
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;
|
|
};
|
|
}
|