blockhash: use python2
This commit is contained in:
parent
69f354b89b
commit
ff12cb0ef6
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, python, pkg-config, imagemagick, wafHook }:
|
{ lib, stdenv, fetchFromGitHub, python2, pkg-config, imagemagick, wafHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "blockhash";
|
pname = "blockhash";
|
||||||
|
@ -11,9 +11,11 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
|
sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ python pkg-config wafHook ];
|
nativeBuildInputs = [ python2 pkg-config wafHook ];
|
||||||
buildInputs = [ imagemagick ];
|
buildInputs = [ imagemagick ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://blockhash.io/";
|
homepage = "http://blockhash.io/";
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in New Issue