c9baba9212
(My OCD kicked in today...) Remove repeated package names, capitalize first word, remove trailing periods and move overlong descriptions to longDescription. I also simplified some descriptions as well, when they were particularly long or technical, often based on Arch Linux' package descriptions. I've tried to stay away from generated expressions (and I think I succeeded). Some specifics worth mentioning: * cron, has "Vixie Cron" in its description. The "Vixie" part is not mentioned anywhere else. I kept it in a parenthesis at the end of the description. * ctags description started with "Exuberant Ctags ...", and the "exuberant" part is not mentioned elsewhere. Kept it in a parenthesis at the end of description. * nix has the description "The Nix Deployment System". Since that doesn't really say much what it is/does (especially after removing the package name!), I changed that to "Powerful package manager that makes package management reliable and reproducible" (borrowed from nixos.org). * Tons of "GNU Foo, Foo is a [the important bits]" descriptions is changed to just [the important bits]. If the package name doesn't contain GNU I don't think it's needed to say it in the description either.
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, smlnj, rsync }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "twelf-${version}";
|
|
version = "1.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://twelf.plparty.org/releases/twelf-src-${version}.tar.gz";
|
|
sha256 = "0fi1kbs9hrdrm1x4k13angpjasxlyd1gc3ys8ah54i75qbcd9c4i";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig smlnj rsync ];
|
|
|
|
buildPhase = ''
|
|
export SMLNJ_HOME=${smlnj}
|
|
make smlnj
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
rsync -av bin/* $out/bin/
|
|
|
|
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 = "MIT";
|
|
maintainers = with stdenv.lib.maintainers; [ jwiegley ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|