nixpkgs/pkgs/servers/headphones/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
946 B
Nix
Raw Normal View History

2022-01-18 11:41:07 +00:00
{ lib, fetchFromGitHub, python3, makeWrapper }:
2018-09-16 19:47:47 +00:00
2022-01-18 11:41:07 +00:00
python3.pkgs.buildPythonApplication rec {
2020-03-29 10:34:50 +00:00
pname = "headphones";
version = "0.6.0-beta.5";
2018-09-16 19:47:47 +00:00
src = fetchFromGitHub {
owner = "rembo10";
repo = "headphones";
rev = "v${version}";
sha256 = "1ddqk5ch1dlh895cm99li4gb4a596mvq3d0gah9vrbn6fyhp3b4v";
2018-09-16 19:47:47 +00:00
};
dontBuild = true;
doCheck = false;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
2021-10-15 04:46:57 +00:00
mkdir -p $out/bin $out/opt/headphones
cp -R {data,headphones,lib,Headphones.py} $out/opt/headphones
2018-09-16 19:47:47 +00:00
2021-10-15 04:46:57 +00:00
echo v${version} > $out/opt/headphones/version.txt
makeWrapper $out/opt/headphones/Headphones.py $out/bin/headphones
runHook postInstall
2018-09-16 19:47:47 +00:00
'';
meta = with lib; {
2018-09-16 19:47:47 +00:00
description = "Automatic music downloader for SABnzbd";
license = licenses.gpl3Plus;
2019-07-02 04:12:25 +00:00
homepage = "https://github.com/rembo10/headphones";
2021-01-15 07:07:56 +00:00
maintainers = with lib.maintainers; [ rembo10 ];
2018-09-16 19:47:47 +00:00
};
}