summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-10-31 23:11:23 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-10-31 23:11:23 +0100
commit947d48cdaf1dbe2440fba7396ce1007ec4226229 (patch)
tree38fdb36049c2fd99167ea8011f1432c77ceb8ea8 /pkgs/tools/filesystems
parentf90c468ea555c424c910681d471566925bd2c3b9 (diff)
downloadnixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.tar
nixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.tar.gz
nixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.tar.bz2
nixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.tar.lz
nixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.tar.xz
nixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.tar.zst
nixlib-947d48cdaf1dbe2440fba7396ce1007ec4226229.zip
9pfs: fix src download
Fortunately the hash is the same, so I don't really need to check
authenticity.  Uncovered by c3255fe8ec.
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/9pfs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/9pfs/default.nix b/pkgs/tools/filesystems/9pfs/default.nix
index c75cc45170af..5ad54adc08ad 100644
--- a/pkgs/tools/filesystems/9pfs/default.nix
+++ b/pkgs/tools/filesystems/9pfs/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
   name = "9pfs";
 
   src = fetchFromGitHub {
-    owner = "spewspew";
+    owner = "mischief";
     repo = "9pfs";
     rev = "7f4ca4cd750d650c1215b92ac3cc2a28041960e4";
     sha256 = "007s2idsn6bspmfxv1qabj39ggkgvn6gwdbhczwn04lb4c6gh3xc";
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = {
-    homepage = https://github.com/spewspew/9pfs;
+    #homepage = https://github.com/spewspew/9pfs; # the account apparently doesn't exist
     description = "FUSE-based client of the 9P network filesystem protocol";
     maintainers = [ lib.maintainers.eelco ];
     platforms = lib.platforms.linux;