disper: stay with python2

This commit is contained in:
Frederik Rietdijk 2021-03-25 12:19:28 +01:00
parent 3d4695c41d
commit bccaae647c

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, python, xorg, makeWrapper }:
{ lib, stdenv, fetchFromGitHub, python2, xorg, makeWrapper }:
stdenv.mkDerivation rec {
pname = "disper";
@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python ];
strictDeps = true;
buildInputs = [ python2 ];
preConfigure = ''
export makeFlags="PREFIX=$out"