about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-05-12 21:59:06 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-05-12 21:59:06 +0000
commitd994faca9bbb047fc9c31585389ec01f46bc4f40 (patch)
treef863579a11f90759057ee2b3cec7777ea55e4597
parent45944d3aee0008ed7af15bbc7c3328133ff8f833 (diff)
downloadnixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.tar
nixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.tar.gz
nixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.tar.bz2
nixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.tar.lz
nixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.tar.xz
nixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.tar.zst
nixlib-d994faca9bbb047fc9c31585389ec01f46bc4f40.zip
Fixing larswm src.
svn path=/nixpkgs/trunk/; revision=21758
-rw-r--r--pkgs/applications/window-managers/larswm/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/window-managers/larswm/default.nix b/pkgs/applications/window-managers/larswm/default.nix
index cac5e155f13c..010a00b8fab9 100644
--- a/pkgs/applications/window-managers/larswm/default.nix
+++ b/pkgs/applications/window-managers/larswm/default.nix
@@ -2,7 +2,11 @@
 
 stdenv.mkDerivation {
   name = "larswm-7.5.3";
-  src = /home/viric/larswm-7.5.3.tar.gz;
+
+  src = fetchurl {
+    url = mirror://sourceforge/larswm/larswm-7.5.3.tar.gz;
+    sha256 = "1xmlx9g1nhklxjrg0wvsya01s4k5b9fphnpl9zdwp29mm484ni3v";
+  };
 
   buildInputs = [ imake libX11 libXext libXmu ];