librep: git -> 0.92.5

This is the latest release and is more recent than
the GIT revision pointed to previously.

I have also taken the liberty of removing some irrelevant
information from the package description.
This commit is contained in:
Joachim Fasting 2015-04-28 03:28:23 +02:00
parent 2d8cfe76a9
commit ed46b22db0

View File

@ -1,18 +1,17 @@
{ stdenv, fetchurl
{ stdenv, fetchgit
, pkgconfig, autoreconfHook , pkgconfig, autoreconfHook
, readline, texinfo , readline, texinfo
, gdbm, gmp, libffi }: , gdbm, gmp, libffi }:
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "librep-${version}";
version = "0.92.5";
name = "librep-git-2015-02-15"; src = fetchurl {
url = "https://github.com/SawfishWM/librep/archive/${name}.tar.gz";
src = fetchgit { sha256 = "1ly425cgs0yi3lb5l84v3bacljw7m2nmzgky3acy1anp709iwi76";
url = "https://github.com/SawfishWM/librep.git";
rev = "a1f2db721aa5055e90f6a76fde625946340ed8cf";
sha256 = "c91484d02b2408becc8961997c3d6404aefa8e1f8af4621a8b5f7622b1857fa6";
}; };
buildInputs = [ pkgconfig autoreconfHook readline texinfo ]; buildInputs = [ pkgconfig autoreconfHook readline texinfo ];
@ -25,15 +24,12 @@ stdenv.mkDerivation rec {
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
meta = { meta = {
description = "Lisp system for Sawfish"; description = "Fast, lightweight, and versatile Lisp environment";
longDescription = '' longDescription = ''
This is librep, a Lisp system for UNIX, needed by Sawfish window manager. librep is a Lisp system for UNIX, comprising an
It contains a Lisp interpreter, byte-code compiler and virtual machine. interpreter, a byte-code compiler, and a virtual
Applications may use the Lisp interpreter as an extension language, machine. It can serve as an application extension language
or it may be used for stand-alone scripts. but is also suitable for standalone scripts.
The Lisp dialect was originally inspired by Emacs Lisp, but with the worst
features removed. It also borrows many ideas from Scheme.
''; '';
homepage = http://sawfish.wikia.com; homepage = http://sawfish.wikia.com;
license = licenses.gpl2; license = licenses.gpl2;