1{ lib, buildGoModule, fetchFromGitHub }:
2buildGoModule rec {
3 pname = "run";
4 version = "0.9.1";
5
6 src = fetchFromGitHub {
7 owner = "TekWizely";
8 repo = "run";
9 rev = "v${version}";
10 sha256 = "sha256-ClSB+v153Tj1cKLSmT9Z0IEyc+OABPeG519PzT03pX0=";
11 };
12
13 vendorSha256 = "sha256-4n8RRnDNu1Khv3V5eUB/eaFFJGVD/GdqMOywksc2LPw=";
14
15 doCheck = false;
16
17 meta = with lib; {
18 description = "Easily manage and invoke small scripts and wrappers";
19 homepage = "https://github.com/TekWizely/run";
20 license = licenses.mit;
21 maintainers = with maintainers; [ rawkode Br1ght0ne ];
22 platforms = platforms.unix;
23 };
24}