evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / markscribe / package.nix
blobc2ee3a596e9797f5978dc4199a3d0c80fadffe31
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "markscribe";
8   version = "0.6.0";
10   src = fetchFromGitHub {
11     owner = "muesli";
12     repo = "markscribe";
13     rev = "v${version}";
14     hash = "sha256-I8WSG9rMqgf2QADQetlYTSUIQH1Iv8cMVw/3uIwEDPc=";
15   };
17   vendorHash = "sha256-leeP2+W+bnYASls3k0l4jpz1rc1mAkMWUfrY2uBUUdQ=";
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     description = "Your personal markdown scribe with template-engine and Git(Hub) & RSS powers";
23     mainProgram = "markscribe";
24     homepage = "https://github.com/muesli/markscribe";
25     changelog = "https://github.com/muesli/markscribe/releases/tag/${src.rev}";
26     license = licenses.mit;
27     maintainers = with maintainers; [ figsoda ];
28   };