571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pyenv";
|
|
version = "2.4.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyenv";
|
|
repo = "pyenv";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-SOCXr/btqub4affamyBH04rIXFb0oh3Hizpn1pFjfTA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
configureScript = "src/configure";
|
|
|
|
makeFlags = ["-C" "src"];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out"
|
|
cp -R bin "$out/bin"
|
|
cp -R libexec "$out/libexec"
|
|
cp -R plugins "$out/plugins"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage man/man1/pyenv.1
|
|
installShellCompletion completions/pyenv.{bash,fish,zsh}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple Python version management";
|
|
homepage = "https://github.com/pyenv/pyenv";
|
|
changelog = "https://github.com/pyenv/pyenv/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tjni ];
|
|
platforms = platforms.all;
|
|
mainProgram = "pyenv";
|
|
};
|
|
}
|