lol

Merge pull request #21785 from magnetophon/clipster

clipster: use python3:

authored by

Jörg Thalheim and committed by
GitHub
dcfda198 e9d3862b

+3 -2
+3 -2
pkgs/tools/misc/clipster/default.nix
··· 1 - {fetchFromGitHub , stdenv, makeWrapper, python, gtk3, libwnck3 }: 1 + {fetchFromGitHub , stdenv, makeWrapper, python3, gtk3, libwnck3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "clipster-unstable-${version}"; ··· 11 11 sha256 = "005akgk1wn3z5vxfjii202zzwz85zydimfgm69ml68imj5vbhkg1"; 12 12 }; 13 13 14 - pythonEnv = python.withPackages(ps: with ps; [ dbus-python pygtk pygobject3 ]); 14 + pythonEnv = python3.withPackages(ps: with ps; [ pygobject3 ]); 15 15 16 16 buildInputs = [ pythonEnv gtk3 libwnck3 makeWrapper ]; 17 17 18 18 installPhase = '' 19 + sed -i 's/python/python3/g' clipster 19 20 mkdir -p $out/bin/ 20 21 cp clipster $out/bin/ 21 22 wrapProgram "$out/bin/clipster" \