lol

Merge pull request #199526 from sweenu/master

authored by

Sandro and committed by
GitHub
be602ebd 699e05b5

+45
+6
maintainers/maintainer-list.nix
··· 13240 13240 githubId = 19905904; 13241 13241 name = "Simon Weber"; 13242 13242 }; 13243 + sweenu = { 13244 + name = "sweenu"; 13245 + email = "contact@sweenu.xyz"; 13246 + github = "sweenu"; 13247 + githubId = 7051978; 13248 + }; 13243 13249 swflint = { 13244 13250 email = "swflint@flintfam.org"; 13245 13251 github = "swflint";
+37
pkgs/applications/networking/feedreaders/goeland/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "goeland"; 8 + version = "0.11.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "slurdge"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "sha256-9SxlxRco+eLyyIrMjNCdqAyttDnoc8nuMh+ecCpk3bg="; 15 + }; 16 + 17 + vendorSha256 = "sha256-a29TtT6xSapIiHvC9KHQm4gd1QCK3l0RpKe1ieaKUKA="; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + "-X github.com/slurdge/goeland/version.GitCommit=${version}" 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "An alternative to RSS2Email written in golang with many filters."; 27 + longDescription = '' 28 + Goeland excels at creating beautiful emails from RSS, 29 + tailored for daily or weekly digest. It include a number of 30 + filters that can transform the RSS content along the way. 31 + It can also consume other sources, such as a Imgur tag. 32 + ''; 33 + homepage = "https://github.com/slurdge/goeland"; 34 + license = with licenses; [ mit ]; 35 + maintainers = [ maintainers.sweenu ]; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 7367 7367 7368 7368 godot-server = callPackage ../development/tools/godot/3/server.nix { }; 7369 7369 7370 + goeland = callPackage ../applications/networking/feedreaders/goeland { }; 7371 + 7370 7372 go-mtpfs = callPackage ../tools/filesystems/go-mtpfs { }; 7371 7373 7372 7374 goofys = callPackage ../tools/filesystems/goofys { };