summary refs log tree commit diff
path: root/pkgs/development/tools/run/default.nix
blob: 4dcfed96056ee76dec95873be89b2d37123ff752 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
  pname = "run";
  version = "0.7.1";

  src = fetchFromGitHub {
    owner = "TekWizely";
    repo = "run";
    rev = "v${version}";
    sha256 = "0q9f8lzrzybdablqph5wihqhfbfzb3bbnnxvhy7g5ccg1kzy7mgp";
  };

  modSha256 = "0s2lw9q5jskj41jqr8bv5w45pkrp2s0yfd2hgjgsd0q4ifm07k7s";

  meta = with stdenv.lib; {
    description = "Easily manage and invoke small scripts and wrappers";
    homepage    = https://github.com/TekWizely/run;
    license     = licenses.mit;
    maintainers = with maintainers; [ rawkode filalex77 ];
    platforms   = platforms.unix;
  };
}