nixpkgs/pkgs/tools/misc/viddy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
613 B
Nix
Raw Normal View History

2021-09-14 14:36:23 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "viddy";
2023-08-30 02:18:02 +00:00
version = "0.3.7";
2021-09-14 14:36:23 +00:00
src = fetchFromGitHub {
owner = "sachaos";
repo = pname;
rev = "v${version}";
2023-08-30 02:18:02 +00:00
hash = "sha256-82q73L0641d5qNmB+WLkUmDP5OHMoj2SNFc+FhknhwU=";
2021-09-14 14:36:23 +00:00
};
2023-08-30 02:18:02 +00:00
vendorHash = "sha256-FMSgLI1W5keRnSYVyY0XuarMzLWvm9D1ufUYmZttfxk=";
2021-09-14 14:36:23 +00:00
ldflags = [
"-s"
"-w"
"-X"
"main.version=${version}"
];
meta = with lib; {
description = "A modern watch command";
homepage = "https://github.com/sachaos/viddy";
license = licenses.mit;
maintainers = with maintainers; [ j-hui ];
};
}