fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, buildGoModule, fetchFromGitHub }:
2buildGoModule rec {
3 pname = "run";
4 version = "0.7.2";
5
6 src = fetchFromGitHub {
7 owner = "TekWizely";
8 repo = "run";
9 rev = "v${version}";
10 sha256 = "17n11lqhywq4z62w2rakdq80v7mxf83rgln19vj4v4nxpwd2hjjw";
11 };
12
13 vendorSha256 = "1g5rmiiwqpm8gky9yr5f2a7zsjjmm9i12r7yxj9cz7y3rmw9sw8c";
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}