lol
0
fork

Configure Feed

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

chruby-fish: init at 0.8.2

+30
+28
pkgs/development/tools/misc/chruby-fish/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, chruby }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "chruby-fish"; 5 + version = "0.8.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "JeanMertz"; 9 + repo = "chruby-fish"; 10 + rev = "v${version}"; 11 + sha256 = "15q0ywsn9pcypbpvlq0wb41x4igxm9bsvhg9a05dqw1n437qjhyb"; 12 + }; 13 + 14 + postInstall = '' 15 + sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/auto.fish 16 + sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/chruby.fish 17 + ''; 18 + 19 + installFlags = [ "PREFIX=$(out)" ]; 20 + 21 + meta = { 22 + description = "Thin wrapper around chruby to make it work with the Fish shell"; 23 + homepage = "https://github.com/JeanMertz/chruby-fish"; 24 + license = lib.licenses.mit; 25 + platforms = lib.platforms.all; 26 + maintainers = [ lib.maintainers.cohei ]; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 10753 10753 10754 10754 chruby = callPackage ../development/tools/misc/chruby { rubies = null; }; 10755 10755 10756 + chruby-fish = callPackage ../development/tools/misc/chruby-fish { }; 10757 + 10756 10758 cl-launch = callPackage ../development/tools/misc/cl-launch {}; 10757 10759 10758 10760 cloud-nuke = callPackage ../development/tools/cloud-nuke { };