nixpkgs/pkgs/servers/headphones/default.nix

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

41 lines
991 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";
2023-11-26 09:19:10 +00:00
version = "0.6.1";
2022-09-16 22:37:19 +00:00
format = "other";
2018-09-16 19:47:47 +00:00
src = fetchFromGitHub {
owner = "rembo10";
repo = "headphones";
rev = "v${version}";
2023-11-26 09:19:10 +00:00
sha256 = "1pj6xrcc6g336lb2knlc9l3qxgj3jaaymnbd7bmfjahgq5cp4d4v";
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "headphones";
2018-09-16 19:47:47 +00:00
};
}