summary refs log tree commit diff
path: root/pkgs/os-specific/linux/consoletools
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2013-11-20 15:06:48 -0600
committerWilliam A. Kennington III <william@wkennington.com>2013-11-28 00:52:11 -0600
commit43594f121b2ea7b4e09b1b765e207dc98034744c (patch)
tree28ff19011969426da9a038bc2e5c2cce50659e65 /pkgs/os-specific/linux/consoletools
parent0e4937ce4cf5647311743c0e3f7ddd8f1ff7cb33 (diff)
downloadnixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.tar
nixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.tar.gz
nixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.tar.bz2
nixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.tar.lz
nixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.tar.xz
nixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.tar.zst
nixpkgs-43594f121b2ea7b4e09b1b765e207dc98034744c.zip
Update consoletools from 1.4.3 -> 1.4.6
Diffstat (limited to 'pkgs/os-specific/linux/consoletools')
-rw-r--r--pkgs/os-specific/linux/consoletools/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/consoletools/default.nix b/pkgs/os-specific/linux/consoletools/default.nix
index 537cc386402..f8be37edfe2 100644
--- a/pkgs/os-specific/linux/consoletools/default.nix
+++ b/pkgs/os-specific/linux/consoletools/default.nix
@@ -1,13 +1,12 @@
-{ stdenv, fetchgit, SDL }:
+{ stdenv, fetchurl, SDL }:
 
 stdenv.mkDerivation rec {
   name = "linuxconsoletools-${version}";
-  version = "1.4.3";
+  version = "1.4.6";
 
-  src = fetchgit {
-    url = "git://linuxconsole.git.sourceforge.net/gitroot/linuxconsole/linuxconsole";
-    rev = "dac2cae0e5795ddc27b76a92767dd9e07a10621e";
-    sha256 = "350b008e614923dbd548fcaaf2842b39433acdcf595e2ce8aaf1599f076d331d";
+  src = fetchurl {
+    url = "mirror://sourceforge/linuxconsole/${name}.tar.bz2";
+    sha256 = "0035yhjbjdis5wqmbdz67xq61065x7vrx5mb7kb1rhrx3ag43wcf";
   };
 
   buildInputs = [ SDL ];