summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-08-03 16:16:18 +0000
committerGitHub <noreply@github.com>2018-08-03 16:16:18 +0000
commit82bce290f5133d05a0c3ef5eb9ae45f5030a0d89 (patch)
treec5e727bc84fb10a8b753542c265fdee8ac9dc400 /pkgs
parent30783a52bc047257c8b2aedb16b54b6315db2951 (diff)
parent8413f1883e4b6b4fd4ef8489f2d6a601fea48d27 (diff)
downloadnixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.tar
nixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.tar.gz
nixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.tar.bz2
nixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.tar.lz
nixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.tar.xz
nixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.tar.zst
nixlib-82bce290f5133d05a0c3ef5eb9ae45f5030a0d89.zip
Merge pull request #44410 from dotlambda/afflib-python3
afflib: use python3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/afflib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/afflib/default.nix b/pkgs/development/libraries/afflib/default.nix
index b398af0db344..a1c466605228 100644
--- a/pkgs/development/libraries/afflib/default.nix
+++ b/pkgs/development/libraries/afflib/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl
-, autoreconfHook, python
+, autoreconfHook, python3
 }:
 
 stdenv.mkDerivation rec {
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ autoreconfHook ];
-  buildInputs = [ zlib curl expat fuse openssl python ];
+  buildInputs = [ zlib curl expat fuse openssl python3 ];
 
   meta = {
     homepage = http://afflib.sourceforge.net/;