mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
25 lines
631 B
Nix
25 lines
631 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
buildGoModule rec {
|
|
pname = "run";
|
|
version = "0.11.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TekWizely";
|
|
repo = "run";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-an5AuRJJEM18IssdLLZC/zzPpsVCCtawRQXK/AfzMN0=";
|
|
};
|
|
|
|
vendorHash = "sha256-BAyhuE9hGGDfDGmXQ7dseUvHlK5vC87uLT78lHSvLeg=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Easily manage and invoke small scripts and wrappers";
|
|
mainProgram = "run";
|
|
homepage = "https://github.com/TekWizely/run";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rawkode Br1ght0ne ];
|
|
};
|
|
}
|