Files
nixpkgs/pkgs/development/libraries/librep/default.nix
T

41 lines
1.1 KiB
Nix
Raw Normal View History

2015-04-28 03:28:23 +02:00
{ stdenv, fetchurl
2015-02-06 14:32:55 -02:00
, pkgconfig, autoreconfHook
, readline, texinfo
, gdbm, gmp, libffi }:
with stdenv.lib;
2015-04-28 03:28:23 +02:00
2015-02-06 14:32:55 -02:00
stdenv.mkDerivation rec {
2015-04-28 03:28:23 +02:00
name = "librep-${version}";
2016-10-23 09:06:47 -02:00
version = "0.92.6";
sourceName = "librep_${version}";
2015-02-06 14:32:55 -02:00
2015-04-28 03:28:23 +02:00
src = fetchurl {
2016-10-23 09:06:47 -02:00
url = "http://download.tuxfamily.org/librep/${sourceName}.tar.xz";
sha256 = "1k6c0hmyzxh8459r790slh9vv9vwy9d7w3nlmrqypbx9mk855hgy";
2015-02-06 14:32:55 -02:00
};
buildInputs = [ pkgconfig autoreconfHook readline texinfo ];
propagatedBuildInputs = [ gdbm gmp libffi ];
configureFlags = [
"--disable-static"
];
setupHook = ./setup-hook.sh;
meta = {
2015-04-28 03:28:23 +02:00
description = "Fast, lightweight, and versatile Lisp environment";
2015-02-06 14:32:55 -02:00
longDescription = ''
2015-04-28 03:28:23 +02:00
librep is a Lisp system for UNIX, comprising an
interpreter, a byte-code compiler, and a virtual
machine. It can serve as an application extension language
but is also suitable for standalone scripts.
2016-10-23 09:06:47 -02:00
'';
2015-02-06 14:32:55 -02:00
homepage = http://sawfish.wikia.com;
license = licenses.gpl2;
maintainers = [ maintainers.AndersonTorres ];
};
}
2016-10-23 09:06:47 -02:00
# TODO: investigate fetchFromGithub