about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/chruby-fish/default.nix
blob: 6268c740e212704687433eb2412340b3cb6a189c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, lib, fetchFromGitHub, chruby }:

stdenv.mkDerivation rec {
  pname = "chruby-fish";
  version = "0.8.2";

  src = fetchFromGitHub {
    owner = "JeanMertz";
    repo = "chruby-fish";
    rev = "v${version}";
    sha256 = "15q0ywsn9pcypbpvlq0wb41x4igxm9bsvhg9a05dqw1n437qjhyb";
  };

  postInstall = ''
    sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/auto.fish
    sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/chruby.fish
  '';

  installFlags = [ "PREFIX=$(out)" ];

  meta = {
    description = "Thin wrapper around chruby to make it work with the Fish shell";
    homepage = "https://github.com/JeanMertz/chruby-fish";
    license = lib.licenses.mit;
    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.cohei ];
  };
}