Merge pull request #141708 from rembo10/headphones-update

headphones: 0.5.19 -> 0.5.20
This commit is contained in:
Artturi 2021-10-15 09:09:28 +03:00 committed by GitHub
commit 2e39dd11dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@
python2.pkgs.buildPythonApplication rec {
pname = "headphones";
version = "0.5.19";
version = "0.5.20";
src = fetchFromGitHub {
owner = "rembo10";
repo = "headphones";
rev = "v${version}";
sha256 = "0z39gyan3ksdhnjxxs7byamrzmrk8cn15g300iqigzvgidff1lq0";
sha256 = "0m234fr1i8bb8mgmjsdpkbaa3l16y23ca6s7nyyl5ismmjxhi4mz";
};
dontBuild = true;
@ -18,10 +18,12 @@ python2.pkgs.buildPythonApplication rec {
buildInputs = [ python2 ];
installPhase = ''
mkdir -p $out/bin
cp -R {data,headphones,lib,Headphones.py} $out/
mkdir -p $out/bin $out/opt/headphones
cp -R {data,headphones,lib,Headphones.py} $out/opt/headphones
makeWrapper $out/Headphones.py $out/bin/headphones
echo v${version} > $out/opt/headphones/version.txt
makeWrapper $out/opt/headphones/Headphones.py $out/bin/headphones
'';
meta = with lib; {