nixpkgs/pkgs/shells/any-nix-shell/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
784 B
Nix
Raw Normal View History

2022-05-06 18:39:28 +00:00
{ lib, stdenv, fetchFromGitHub, makeWrapper, bash }:
2018-09-13 21:15:54 +00:00
stdenv.mkDerivation rec {
pname = "any-nix-shell";
version = "1.2.1";
2018-09-13 21:15:54 +00:00
src = fetchFromGitHub {
owner = "haslersn";
repo = "any-nix-shell";
rev = "v${version}";
sha256 = "0q27rhjhh7k0qgcdcfm8ly5za6wm4rckh633d0sjz87faffkp90k";
2018-09-13 21:15:54 +00:00
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
2018-09-13 21:15:54 +00:00
nativeBuildInputs = [ makeWrapper ];
2022-05-06 18:39:28 +00:00
buildInputs = [ bash ];
2018-09-13 21:15:54 +00:00
installPhase = ''
mkdir -p $out/bin
cp -r bin $out
wrapProgram $out/bin/any-nix-shell --prefix PATH ":" $out/bin
'';
meta = with lib; {
2018-09-13 21:15:54 +00:00
description = "fish and zsh support for nix-shell";
license = licenses.mit;
homepage = "https://github.com/haslersn/any-nix-shell";
2018-09-13 21:15:54 +00:00
maintainers = with maintainers; [ haslersn ];
mainProgram = "any-nix-shell";
2018-09-13 21:15:54 +00:00
};
}