about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-04-28 03:28:23 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2015-04-28 11:52:34 +0200
commited46b22db0fbc2d51512f91f018711ed05ed7143 (patch)
tree5c59465edbcc25d67e2a6468de52547284fe6f21 /pkgs
parent2d8cfe76a9e4f05e391d30f1654d45dee5993b8a (diff)
downloadnixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.tar
nixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.tar.gz
nixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.tar.bz2
nixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.tar.lz
nixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.tar.xz
nixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.tar.zst
nixlib-ed46b22db0fbc2d51512f91f018711ed05ed7143.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/librep/default.nix28
1 files changed, 12 insertions, 16 deletions
diff --git a/pkgs/development/libraries/librep/default.nix b/pkgs/development/libraries/librep/default.nix
index 2abe01decb77..314508cc5c20 100644
--- a/pkgs/development/libraries/librep/default.nix
+++ b/pkgs/development/libraries/librep/default.nix
@@ -1,18 +1,17 @@
-
-	{ stdenv, fetchgit
+{ stdenv, fetchurl
 , pkgconfig, autoreconfHook
 , readline, texinfo
 , gdbm, gmp, libffi }:
 
 with stdenv.lib;
-stdenv.mkDerivation rec {
 
-  name = "librep-git-2015-02-15";
+stdenv.mkDerivation rec {
+  name = "librep-${version}";
+  version = "0.92.5";
 
-  src = fetchgit {
-    url = "https://github.com/SawfishWM/librep.git";
-    rev = "a1f2db721aa5055e90f6a76fde625946340ed8cf";
-    sha256 = "c91484d02b2408becc8961997c3d6404aefa8e1f8af4621a8b5f7622b1857fa6";
+  src = fetchurl {
+    url = "https://github.com/SawfishWM/librep/archive/${name}.tar.gz";
+    sha256 = "1ly425cgs0yi3lb5l84v3bacljw7m2nmzgky3acy1anp709iwi76";
   };
 
   buildInputs = [ pkgconfig autoreconfHook readline texinfo ];
@@ -25,15 +24,12 @@ stdenv.mkDerivation rec {
   setupHook = ./setup-hook.sh;
 
   meta = {
-    description = "Lisp system for Sawfish";
+    description = "Fast, lightweight, and versatile Lisp environment";
     longDescription = ''
-      This is librep, a Lisp system for UNIX, needed by Sawfish window manager.
-      It contains a Lisp interpreter, byte-code compiler and virtual machine.
-      Applications may use the Lisp interpreter as an extension language,
-      or it may be used for stand-alone scripts.
-
-      The Lisp dialect was originally inspired by Emacs Lisp, but with the worst
-      features removed. It also borrows many ideas from Scheme.
+      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.
     '';
     homepage = http://sawfish.wikia.com;
     license = licenses.gpl2;