nixpkgs/pkgs/development/tools/run/default.nix

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

24 lines
606 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-01-06 10:52:58 +00:00
buildGoModule rec {
pname = "run";
2023-03-16 23:54:27 +00:00
version = "0.11.2";
2020-01-06 10:52:58 +00:00
src = fetchFromGitHub {
owner = "TekWizely";
repo = "run";
rev = "v${version}";
2023-03-16 23:54:27 +00:00
sha256 = "sha256-an5AuRJJEM18IssdLLZC/zzPpsVCCtawRQXK/AfzMN0=";
2020-01-06 10:52:58 +00:00
};
2023-01-29 06:42:41 +00:00
vendorHash = "sha256-BAyhuE9hGGDfDGmXQ7dseUvHlK5vC87uLT78lHSvLeg=";
2020-01-06 10:52:58 +00:00
doCheck = false;
meta = with lib; {
2020-01-06 10:52:58 +00:00
description = "Easily manage and invoke small scripts and wrappers";
homepage = "https://github.com/TekWizely/run";
2020-01-06 10:52:58 +00:00
license = licenses.mit;
maintainers = with maintainers; [ rawkode Br1ght0ne ];
2020-01-06 10:52:58 +00:00
};
}