Skip to content

Commit

Permalink
unionfs-fuse: Use fetchFromGitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Mar 4, 2017
1 parent b66c0e7 commit 2552b03
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/tools/filesystems/unionfs-fuse/default.nix
@@ -1,12 +1,14 @@
{ stdenv, fetchurl, cmake, fuse }:
{ stdenv, fetchFromGitHub, cmake, fuse }:

stdenv.mkDerivation rec {
name = "unionfs-fuse-${version}";
version = "1.0";

src = fetchurl {
url = "https://github.com/rpodgorny/unionfs-fuse/archive/v${version}.tar.gz";
sha256 = "02fcrjb06lxkxpk4l8arsqmai807sray24lj2nrasqaacg80ps1f";
src = fetchFromGitHub {
owner = "rpodgorny";
repo = "unionfs-fuse";
rev = "v${version}";
sha256 = "0g2hd6yi6v8iqzmgncg1zi9a7ixy9hsh51rzf6jnmzi79543dihf";
};

patches =
Expand Down

0 comments on commit 2552b03

Please sign in to comment.