slides: 0.6.1 -> 0.6.2

This commit is contained in:
Fabian Affolter 2021-10-23 20:50:55 +02:00
parent ced0efcfd1
commit 6e38d72020

View file

@ -3,38 +3,32 @@
, buildGoModule , buildGoModule
, fetchFromGitHub , fetchFromGitHub
, go , go
, python3
, ruby
}: }:
buildGoModule rec { buildGoModule rec {
pname = "slides"; pname = "slides";
version = "0.6.1"; version = "0.6.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "maaslalani"; owner = "maaslalani";
repo = "slides"; repo = "slides";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-530OsO3Rg13nmFYOoouhWvy12Afd25O4We9RBHe1CmE="; sha256 = "sha256-D2ex9/XN5JMKwn+g1cB77UMquYW9NdTzhCCvVtTOBfU=";
}; };
checkInputs = [ checkInputs = [
bash bash
go go
python3
ruby
]; ];
vendorSha256 = "sha256-pI5/1LJVP/ZH64Dy2rUoOXM21oqJ8KA0/L8ClGRb5UY="; vendorSha256 = "sha256-pI5/1LJVP/ZH64Dy2rUoOXM21oqJ8KA0/L8ClGRb5UY=";
ldflags = [ ldflags = [
"-s" "-w" "-s"
"-w"
"-X=main.Version=${version}" "-X=main.Version=${version}"
]; ];
# https://github.com/maaslalani/slides/issues/113
doCheck = false;
meta = with lib; { meta = with lib; {
description = "Terminal based presentation tool"; description = "Terminal based presentation tool";
homepage = "https://github.com/maaslalani/slides"; homepage = "https://github.com/maaslalani/slides";