Move overlays into their own dirs

This commit is contained in:
Dave Gallant
2021-01-20 21:31:47 -05:00
parent 405d4e6f1b
commit 801f878edc
16 changed files with 196 additions and 159 deletions

22
overlays/srv/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{ 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.unlicense;
maintainers = with maintainers; [ davegallant ];
platforms = platforms.linux ++ platforms.darwin;
};
}