mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
35 lines
721 B
Nix
35 lines
721 B
Nix
{ lib, buildGoModule, fetchFromGitHub, bash, go, python3, ruby }:
|
|
|
|
buildGoModule rec {
|
|
pname = "slides";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maaslalani";
|
|
repo = "slides";
|
|
rev = "v${version}";
|
|
sha256 = "1cywqrqj199hmx532h4vn0j17ypswq2zkmv8qpxpayvjwimx4pwk";
|
|
};
|
|
|
|
checkInputs = [
|
|
bash
|
|
go
|
|
python3
|
|
ruby
|
|
];
|
|
|
|
vendorSha256 = "0y6fz9rw702mji571k0gp4kpfx7xbv7rvlnmpfjygy6lmp7wga6f";
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X=main.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal based presentation tool";
|
|
homepage = "https://github.com/maaslalani/slides";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ maaslalani ];
|
|
};
|
|
}
|