pkgs: extract podgrab from 'services/podgrab'
This commit is contained in:
parent
edb9c46106
commit
b06f265291
|
@ -1,2 +1,4 @@
|
||||||
{ pkgs }:
|
{ pkgs }:
|
||||||
{ }
|
{
|
||||||
|
podgrab = pkgs.callPackage ./podgrab { };
|
||||||
|
}
|
||||||
|
|
29
pkgs/podgrab/default.nix
Normal file
29
pkgs/podgrab/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "podgrab";
|
||||||
|
version = "2021-03-26";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "akhilrex";
|
||||||
|
repo = "podgrab";
|
||||||
|
rev = "3179a875b8b638fb86d0e829d12a9761c1cd7f90";
|
||||||
|
sha256 = "sha256-vhxIm20ZUi+RusrAsSY54tv/D570/oMO5qLz9dNqgqo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-xY9xNuJhkWPgtqA/FBVIp7GuWOv+3nrz6l3vaZVLlIE=";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/
|
||||||
|
cp -r "$src/client" "$out/share/"
|
||||||
|
cp -r "$src/webassets" "$out/share/"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = ''
|
||||||
|
A self-hosted podcast manager to download episodes as soon as they become live
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/akhilrex/podgrab";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8,33 +8,7 @@ let
|
||||||
domain = config.networking.domain;
|
domain = config.networking.domain;
|
||||||
podgrabDomain = "podgrab.${domain}";
|
podgrabDomain = "podgrab.${domain}";
|
||||||
|
|
||||||
podgrabPkg = with pkgs; with stdenv; buildGoModule rec {
|
podgrabPkg = pkgs.ambroisie.podgrab;
|
||||||
pname = "podgrab";
|
|
||||||
version = "2021-03-26";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "akhilrex";
|
|
||||||
repo = "podgrab";
|
|
||||||
rev = "3179a875b8b638fb86d0e829d12a9761c1cd7f90";
|
|
||||||
sha256 = "sha256-vhxIm20ZUi+RusrAsSY54tv/D570/oMO5qLz9dNqgqo=";
|
|
||||||
};
|
|
||||||
|
|
||||||
vendorSha256 = "sha256-xY9xNuJhkWPgtqA/FBVIp7GuWOv+3nrz6l3vaZVLlIE=";
|
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
mkdir -p $out/share/
|
|
||||||
cp -r "$src/client" "$out/share/"
|
|
||||||
cp -r "$src/webassets" "$out/share/"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = ''
|
|
||||||
A self-hosted podcast manager to download episodes as soon as they become live
|
|
||||||
'';
|
|
||||||
homepage = "https://github.com/akhilrex/podgrab";
|
|
||||||
license = licenses.gpl3;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.my.services.podgrab = with lib; {
|
options.my.services.podgrab = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue