4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, bash, installShellFiles }:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "rbenv";
|
||
version = "1.1.2";
|
||
|
||
nativeBuildInputs = [ installShellFiles ];
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "rbenv";
|
||
repo = "rbenv";
|
||
rev = "v${version}";
|
||
sha256 = "12i050vs35iiblxga43zrj7xwbaisv3mq55y9ikagkr8pj1vmq53";
|
||
};
|
||
|
||
postPatch = ''
|
||
patchShebangs src/configure
|
||
pushd src
|
||
'';
|
||
|
||
installPhase = ''
|
||
popd
|
||
mkdir -p $out/bin
|
||
mv libexec $out
|
||
ln -s $out/libexec/rbenv $out/bin/rbenv
|
||
|
||
installShellCompletion completions/rbenv.{bash,zsh}
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Groom your app’s Ruby environment";
|
||
longDescription = ''
|
||
Use rbenv to pick a Ruby version for your application and guarantee that your development environment matches production.
|
||
Put rbenv to work with Bundler for painless Ruby upgrades and bulletproof deployments.
|
||
'';
|
||
homepage = "https://github.com/rbenv/rbenv";
|
||
license = licenses.mit;
|
||
maintainers = with maintainers; [ fzakaria ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|