Add overlay for srv

This commit is contained in:
Dave Gallant
2021-01-17 17:25:03 -05:00
parent aaff66142a
commit a7bf9233a6
3 changed files with 29 additions and 1 deletions

View File

@@ -1,8 +1,9 @@
{ ... }:
[
(import ./rfd.nix)
(import ./lastpass.nix)
(import ./rfd.nix)
(import ./srv.nix)
(import ./vpngate.nix)
]

26
overlays/srv.nix Normal file
View File

@@ -0,0 +1,26 @@
self: super:
rec {
srv = with self;
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 super.lib; {
description = "a simple rss viewer";
license = licenses.unlicense;
maintainers = with maintainers; [ davegallant ];
platforms = platforms.linux ++ platforms.darwin;
};
};
}