afuse: change from git to tarball source

This commit is contained in:
Ryan Mulligan 2015-01-11 13:21:37 -08:00
parent be4704da66
commit 2f1a9ef41f

View File

@ -1,12 +1,11 @@
{ stdenv, fetchgit, pkgconfig, autoreconfHook, fuse }: { stdenv, fetchurl, pkgconfig, autoreconfHook, fuse }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "afuse-0.4.1"; name = "afuse-0.4.1";
src = fetchgit { src = fetchurl {
url = git://github.com/pcarrier/afuse.git; url = https://github.com/pcarrier/afuse/archive/v0.4.1.tar.gz;
rev = "a0892f5506ddcca2031825aff24f1518c8c2f1c8"; sha256 = "1sfhicmxppkvdd4z9klfn63snb71gr9hff6xij1gzk94xg6m0ycc";
sha256 = "12071ff5171d4d5ce4d8835385f50e8079b25e885816b8ad6f22eb46c6497b28";
}; };
buildInputs = [ autoreconfHook pkgconfig fuse ]; buildInputs = [ autoreconfHook pkgconfig fuse ];