summary refs log tree commit diff
path: root/pkgs/os-specific/linux/can-utils
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-07-12 20:36:25 +0300
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-07-12 21:01:57 +0200
commit5fbd08968bf3dca1f5773359e4f50ddc529823e0 (patch)
tree0e6d965d19fe2e25fa6c51bc3eb4c5b20c5a671d /pkgs/os-specific/linux/can-utils
parent48f5247342dec080cbf5ab68919a538ed4a579bb (diff)
downloadnixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.tar
nixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.tar.gz
nixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.tar.bz2
nixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.tar.lz
nixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.tar.xz
nixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.tar.zst
nixpkgs-5fbd08968bf3dca1f5773359e4f50ddc529823e0.zip
can-utils: Source is now hosted at GitHub
Gitorious doesn't exist any more.
Diffstat (limited to 'pkgs/os-specific/linux/can-utils')
-rw-r--r--pkgs/os-specific/linux/can-utils/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/can-utils/default.nix b/pkgs/os-specific/linux/can-utils/default.nix
index 6a3fbd33d68..f181db0c5e3 100644
--- a/pkgs/os-specific/linux/can-utils/default.nix
+++ b/pkgs/os-specific/linux/can-utils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit }:
+{ stdenv, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   name = "can-utils-${version}";
@@ -6,10 +6,11 @@ stdenv.mkDerivation rec {
   # latest commit in git master as version number.
   version = "20140227";
 
-  src = fetchgit {
-    url = "https://git.gitorious.org/linux-can/can-utils.git";
+  src = fetchFromGitHub {
+    owner = "linux-can";
+    repo = "can-utils";
     rev = "67a2bdcd336e6becfa5784742e18c88dbeddc973";
-    sha256 = "0pnnjl141wf3kbf256m6qz9mxz0144z36qqb43skialzcnlhga38";
+    sha256 = "1v73b0nk1kb3kp5nbxp4xiygny6nfjgjnm7zgzrjgryvdrnws32z";
   };
 
   preConfigure = ''makeFlagsArray+=(PREFIX="$out")'';