1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnubg: use non-aliased python

This commit is contained in:
Jonathan Ringer 2022-07-30 20:36:46 -07:00
parent fc1fba2b09
commit 3b4a2063b6
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, glib, python, gtk2, readline }:
{ lib, stdenv, fetchurl, pkg-config, glib, python2, gtk2, readline }:
stdenv.mkDerivation rec {
pname = "gnubg";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
};
nativeBuildInputs = [ pkg-config python glib ];
nativeBuildInputs = [ pkg-config python2 glib ];
buildInputs = [ gtk2 readline ];