Remove srv

This commit is contained in:
Dave Gallant
2023-01-22 18:29:51 -05:00
parent ed55cf0504
commit 317d4d25f3
6 changed files with 6 additions and 45 deletions

View File

@@ -1,6 +1,5 @@
final: prev: {
rfd = prev.callPackage ./rfd {};
srv = prev.callPackage ./srv {};
tmux-sessionizer = prev.callPackage ./tmux-sessionizer {};
vpngate = prev.callPackage ./vpngate {};
yar = prev.callPackage ./yar {};

View File

@@ -1,25 +0,0 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "srv";
version = "v0.1.2";
vendorSha256 = "sha256-ebumpo9hgr7A+Fsznga4ksYu4mcOIfaaKz0uJu2rivE=";
src = fetchFromGitHub {
owner = "davegallant";
repo = "srv";
rev = version;
sha256 = "sha256-x5l/NFEbbRPMBY061g4qRHYV6QUShO7yHqSw+Hir9M0=";
};
meta = with lib; {
description = "a simple rss viewer";
license = licenses.gpl3;
maintainers = with maintainers; [davegallant];
platforms = platforms.linux ++ platforms.darwin;
};
}