summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 17:53:51 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 17:54:38 +0200
commit8413f1883e4b6b4fd4ef8489f2d6a601fea48d27 (patch)
tree31d64da7b7de11666083605cd994f66706bfcfba /pkgs
parenta6c7132abc972b91826db1cf6f820d6b1b454ba0 (diff)
downloadnixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.tar
nixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.tar.gz
nixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.tar.bz2
nixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.tar.lz
nixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.tar.xz
nixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.tar.zst
nixlib-8413f1883e4b6b4fd4ef8489f2d6a601fea48d27.zip
afflib: use python3
Python3 is supported since 3.7.14.
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/;