Use fetchgit for vanitygen instead of fetchurl, github changed something
This commit is contained in:
parent
329a705005
commit
97b64665f5
@ -1,13 +1,13 @@
|
|||||||
{ fetchurl, stdenv, openssl, pcre }:
|
{ fetchgit, stdenv, openssl, pcre }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.21";
|
version = "0.21";
|
||||||
name = "vanitygen-${version}";
|
name = "vanitygen-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
name = "vanitygen-${version}.tar.gz";
|
url = "https://github.com/samr7/vanitygen";
|
||||||
url = "https://github.com/samr7/vanitygen/tarball/0.21";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "1lj0gi08lg0pcby5pbpi08ysynzy24qa1n1065112shkpasi0kxv";
|
sha256 = "1vzfv74hhiyrrpvjca8paydx1ashgbgn5plzrx4swyzxy1xkamah";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openssl pcre ];
|
buildInputs = [ openssl pcre ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user