nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (580B)


      1 { lib, buildGoModule, fetchFromSourcehut }:
      2 
      3 buildGoModule rec {
      4   pname = "gemreader";
      5   version = "2021-03-08";
      6 
      7   src = fetchFromSourcehut {
      8     owner = "~sircmpwn";
      9     repo = "gemreader";
     10     rev = "7f9df147d6785d5f2b77ce9d44513de65985657a";
     11     hash = "sha256-1IqxMBLmcfFIdv11FbGbXVRPc05LmSqPieeaj4uf0nA=";
     12   };
     13 
     14   vendorHash = "sha256-NzrZh2dePytF1vsXzfqoeLnzdlcDThjZIkfwuXTAfXM=";
     15 
     16   meta = with lib; {
     17     description = "Feed reader for the Geminispace";
     18     inherit (src.meta) homepage;
     19     license = licenses.agpl3Only;
     20     maintainers = [ maintainers.sikmir ];
     21   };
     22 }