mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
Merge pull request #99565 from fishi0x01/fishi0x01/vsh
vsh: init at 0.7.2
This commit is contained in:
commit
1760d488e4
pkgs
26
pkgs/tools/misc/vsh/default.nix
Normal file
26
pkgs/tools/misc/vsh/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "vsh";
|
||||||
|
version = "0.7.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fishi0x01";
|
||||||
|
repo = "vsh";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0k9bbfzqhijzimng8plk2xx9h37h7d2wj8g3plvvs3wrf7pmwxs7";
|
||||||
|
};
|
||||||
|
|
||||||
|
# vendor dir is already part of repository
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
|
# make sure version gets set at compile time
|
||||||
|
buildFlagsArray = [ "-ldflags=-s -w -X main.vshVersion=v${version}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "HashiCorp Vault interactive shell";
|
||||||
|
homepage = "https://github.com/fishi0x01/vsh";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fishi0x01 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -29035,6 +29035,8 @@ in
|
||||||
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly;
|
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vsh = callPackage ../tools/misc/vsh { };
|
||||||
|
|
||||||
vttest = callPackage ../tools/misc/vttest { };
|
vttest = callPackage ../tools/misc/vttest { };
|
||||||
|
|
||||||
wacomtablet = libsForQt5.callPackage ../tools/misc/wacomtablet { };
|
wacomtablet = libsForQt5.callPackage ../tools/misc/wacomtablet { };
|
||||||
|
|
Loading…
Reference in a new issue