seasocks: use python3

This commit is contained in:
Robert Schütz 2022-01-12 05:27:08 +00:00
parent 17f8d7ea53
commit ea6b67af0b

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, python, zlib }: { lib, stdenv, fetchFromGitHub, cmake, python3, zlib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "seasocks"; pname = "seasocks";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
buildInputs = [ zlib python ]; buildInputs = [ zlib python3 ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/mattgodbolt/seasocks"; homepage = "https://github.com/mattgodbolt/seasocks";