libevdev: switch to python3

This commit is contained in:
Jan Tojnar 2019-12-14 14:10:15 +01:00
parent 9c18e1fbe7
commit f78ac783a8
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python }:
{ stdenv, fetchurl, python3 }:
stdenv.mkDerivation rec {
pname = "libevdev";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "04a2klvii0in9ln8r85mk2cm73jq8ry2m3yzmf2z8xyjxzjcmlr0";
};
buildInputs = [ python ];
buildInputs = [ python3 ];
meta = with stdenv.lib; {
description = "Wrapper library for evdev devices";