Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
71 lines
1.9 KiB
Nix
71 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
pkg-config,
|
|
smlnj,
|
|
rsync,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "twelf";
|
|
version = "1.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://twelf.plparty.org/releases/twelf-src-${version}.tar.gz";
|
|
sha256 = "0fi1kbs9hrdrm1x4k13angpjasxlyd1gc3ys8ah54i75qbcd9c4i";
|
|
};
|
|
|
|
patches = [
|
|
# Fix Emacs old-style backquotes: https://github.com/standardml/twelf/pull/3
|
|
(fetchpatch {
|
|
url = "https://github.com/standardml/twelf/commit/7b3f3dbb8b8ec8d16d843875fce1e2bd6a50e3ae.patch";
|
|
hash = "sha256-cSrgQFRPL+4zRtFXv3rLsAasjLfal0TZpXasEUtUSHc=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
smlnj
|
|
rsync
|
|
];
|
|
|
|
buildPhase = ''
|
|
export SMLNJ_HOME=${smlnj}
|
|
make smlnj
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
rsync -av bin/{*,.heap} $out/bin/
|
|
bin/.mkexec ${smlnj}/bin/sml $out/ twelf-server twelf-server
|
|
|
|
substituteInPlace emacs/twelf-init.el \
|
|
--replace '(concat twelf-root "emacs")' '(concat twelf-root "share/emacs/site-lisp/twelf")'
|
|
|
|
mkdir -p $out/share/emacs/site-lisp/twelf/
|
|
rsync -av emacs/ $out/share/emacs/site-lisp/twelf/
|
|
|
|
mkdir -p $out/share/twelf/examples
|
|
rsync -av examples/ $out/share/twelf/examples/
|
|
mkdir -p $out/share/twelf/vim
|
|
rsync -av vim/ $out/share/twelf/vim/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Logic proof assistant";
|
|
longDescription = ''
|
|
Twelf is a language used to specify, implement, and prove properties of
|
|
deductive systems such as programming languages and logics. Large
|
|
research projects using Twelf include the TALT typed assembly language,
|
|
a foundational proof-carrying-code system, and a type safety proof for
|
|
Standard ML.
|
|
'';
|
|
homepage = "http://twelf.org/wiki/Main_Page";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ jwiegley ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|