nixpkgs-suyu/pkgs/applications/science/logic/cedille/default.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

2019-04-29 21:02:44 +02:00
{ stdenv
, lib
, fetchFromGitHub
, alex
, happy
, Agda
, buildPlatform
, buildPackages
, ghcWithPackages
}:
2018-10-12 23:22:25 +02:00
stdenv.mkDerivation rec {
2019-04-29 21:02:44 +02:00
version = "1.1.1";
pname = "cedille";
2018-10-12 23:22:25 +02:00
src = fetchFromGitHub {
owner = "cedille";
repo = "cedille";
rev = "v${version}";
2019-05-06 03:47:29 +02:00
sha256 = "16pc72wz6kclq9yv2r8hx85mkp0s125h12snrhcjxkbl41xx2ynb";
2019-04-29 21:02:44 +02:00
fetchSubmodules = true;
2018-10-12 23:22:25 +02:00
};
2019-05-06 03:47:29 +02:00
nativeBuildInputs = [ alex happy ];
2019-04-29 21:02:44 +02:00
buildInputs = [ Agda (ghcWithPackages (ps: [ps.ieee])) ];
2018-10-12 23:22:25 +02:00
LANG = "en_US.UTF-8";
LOCALE_ARCHIVE =
lib.optionalString (buildPlatform.libc == "glibc")
"${buildPackages.glibcLocales}/lib/locale/locale-archive";
postPatch = ''
patchShebangs create-libraries.sh
2019-04-29 21:02:44 +02:00
'';
2018-10-12 23:22:25 +02:00
installPhase = ''
2019-04-29 21:02:44 +02:00
install -Dm755 -t $out/bin/ cedille
install -Dm755 -t $out/bin/ core/cedille-core
install -Dm644 -t $out/share/info docs/info/cedille-info-main.info
mkdir -p $out/lib/
cp -r lib/ $out/lib/cedille/
2018-10-12 23:22:25 +02:00
'';
2019-04-29 21:02:44 +02:00
meta = with stdenv.lib; {
description = "An interactive theorem-prover and dependently typed programming language, based on extrinsic (aka Curry-style) type theory";
homepage = "https://cedille.github.io/";
2019-04-29 21:02:44 +02:00
license = licenses.mit;
maintainers = with maintainers; [ marsam mpickering ];
platforms = platforms.unix;
2018-10-12 23:22:25 +02:00
};
}