Merge pull request #199526 from sweenu/master

This commit is contained in:
Sandro 2022-11-11 01:03:11 +01:00 committed by GitHub
commit be602ebd3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 45 additions and 0 deletions

View file

@ -13240,6 +13240,12 @@
githubId = 19905904;
name = "Simon Weber";
};
sweenu = {
name = "sweenu";
email = "contact@sweenu.xyz";
github = "sweenu";
githubId = 7051978;
};
swflint = {
email = "swflint@flintfam.org";
github = "swflint";

View file

@ -0,0 +1,37 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "goeland";
version = "0.11.0";
src = fetchFromGitHub {
owner = "slurdge";
repo = pname;
rev = "v${version}";
sha256 = "sha256-9SxlxRco+eLyyIrMjNCdqAyttDnoc8nuMh+ecCpk3bg=";
};
vendorSha256 = "sha256-a29TtT6xSapIiHvC9KHQm4gd1QCK3l0RpKe1ieaKUKA=";
ldflags = [
"-s"
"-w"
"-X github.com/slurdge/goeland/version.GitCommit=${version}"
];
meta = with lib; {
description = "An alternative to RSS2Email written in golang with many filters.";
longDescription = ''
Goeland excels at creating beautiful emails from RSS,
tailored for daily or weekly digest. It include a number of
filters that can transform the RSS content along the way.
It can also consume other sources, such as a Imgur tag.
'';
homepage = "https://github.com/slurdge/goeland";
license = with licenses; [ mit ];
maintainers = [ maintainers.sweenu ];
};
}

View file

@ -7367,6 +7367,8 @@ with pkgs;
godot-server = callPackage ../development/tools/godot/3/server.nix { };
goeland = callPackage ../applications/networking/feedreaders/goeland { };
go-mtpfs = callPackage ../tools/filesystems/go-mtpfs { };
goofys = callPackage ../tools/filesystems/goofys { };