summary refs log tree commit diff
path: root/pkgs/development/libraries/libraw1394/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libraw1394/default.nix')
-rw-r--r--pkgs/development/libraries/libraw1394/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libraw1394/default.nix b/pkgs/development/libraries/libraw1394/default.nix
index 8463749fcb3..2ca8c543fa9 100644
--- a/pkgs/development/libraries/libraw1394/default.nix
+++ b/pkgs/development/libraries/libraw1394/default.nix
@@ -1,15 +1,15 @@
 args: with args;
-stdenv.mkDerivation {
-  name = "libraw1394-1.2.0";
+stdenv.mkDerivation rec {
+  name = "libraw1394-1.3.0";
 
   src = fetchurl {
-    url = "mirror://sourceforge/libraw1394/libraw1394-1.2.0.tar.gz";
-    sha256 = "1b9zqqzyz0ihyfvhn135y3wc6vmym5yz21jxj9dp0f09b96gmp0z";
+    url = "${meta.homepage}/dl/${name}.tar.gz";
+    sha256 = "035mrca9fhg4kq8r1s5yjgzg3vrn1nc3ndy13yg3chhqgx4dzzr0";
   };
 
   meta = { 
       description = "library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
-      homepage = "http://wiki.linux1394.org/";
+      homepage = "http://www.linux1394.org";
       license = ["GPL" "LGPL"];
   };
 }