lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

corgi: init at 0.2.3 (#45766)

authored by

Wael Nasreddine and committed by
xeji
c928d696 f629d365

+77
+28
pkgs/development/tools/corgi/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "corgi-${rev}"; 5 + rev = "v0.2.3"; 6 + 7 + goPackagePath = "github.com/DrakeW/corgi"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "DrakeW"; 11 + repo = "corgi"; 12 + inherit rev; 13 + sha256 = "0ahwpyd6dac04qw2ak51xfbwkr42sab1gkhh52i7hlcy12jpwl8q"; 14 + }; 15 + 16 + goDeps = ./deps.nix; 17 + 18 + meta = with stdenv.lib; { 19 + description = "CLI workflow manager"; 20 + longDescription = '' 21 + Corgi is a command-line tool that helps with your repetitive command usages by organizing them into reusable snippet. 22 + ''; 23 + homepage = https://github.com/DrakeW/corgi; 24 + license = licenses.mit; 25 + platforms = platforms.all; 26 + maintainers = with maintainers; [ kalbasit ]; 27 + }; 28 + }
+47
pkgs/development/tools/corgi/deps.nix
··· 1 + [ 2 + { 3 + goPackagePath = "github.com/chzyer/readline"; 4 + fetch = { 5 + type = "git"; 6 + url = "https://github.com/chzyer/readline"; 7 + rev = "2972be24d48e78746da79ba8e24e8b488c9880de"; 8 + sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r"; 9 + }; 10 + } 11 + { 12 + goPackagePath = "github.com/fatih/color"; 13 + fetch = { 14 + type = "git"; 15 + url = "https://github.com/fatih/color"; 16 + rev = "2d684516a8861da43017284349b7e303e809ac21"; 17 + sha256 = "1fcfmz4wji3gqmmsdx493r7d101s58hwjalqps6hy25nva5pvmfs"; 18 + }; 19 + } 20 + { 21 + goPackagePath = "github.com/mitchellh/go-homedir"; 22 + fetch = { 23 + type = "git"; 24 + url = "https://github.com/mitchellh/go-homedir"; 25 + rev = "ae18d6b8b3205b561c79e8e5f69bff09736185f4"; 26 + sha256 = "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq"; 27 + }; 28 + } 29 + { 30 + goPackagePath = "github.com/spf13/cobra"; 31 + fetch = { 32 + type = "git"; 33 + url = "https://github.com/spf13/cobra"; 34 + rev = "99dc123558852f67743bd0b2caf8383cb3c6d720"; 35 + sha256 = "0b2rjgycgpkpvpsqgvilqkr66bfk477lyd6l0jxmgxb1h0za5s25"; 36 + }; 37 + } 38 + { 39 + goPackagePath = "github.com/spf13/pflag"; 40 + fetch = { 41 + type = "git"; 42 + url = "https://github.com/spf13/pflag"; 43 + rev = "d929dcbb10863323c436af3cf76cb16a6dfc9b29"; 44 + sha256 = "1qjmqvszs9cmic7brm7pknq86zjra4hq923bn88blfvr3bap5bc4"; 45 + }; 46 + } 47 + ]
+2
pkgs/top-level/all-packages.nix
··· 117 117 118 118 cmark = callPackage ../development/libraries/cmark { }; 119 119 120 + corgi = callPackage ../development/tools/corgi { }; 121 + 120 122 dhallToNix = callPackage ../build-support/dhall-to-nix.nix { 121 123 inherit dhall-nix; 122 124 };