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.
35 lines
910 B
Nix
35 lines
910 B
Nix
{ lib, stdenv, fetchFromGitHub, python3, installShellFiles }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fpp";
|
|
version = "0.9.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "PathPicker";
|
|
rev = version;
|
|
sha256 = "sha256-4BkdGvG/RyF3JBnd/X5r5nboEHG4aqahcYHDunMv2zU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace fpp --replace 'PYTHONCMD="python3"' 'PYTHONCMD="${python3.interpreter}"'
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fpp $out/bin
|
|
cp -r fpp src $out/share/fpp
|
|
ln -s $out/share/fpp/fpp $out/bin/fpp
|
|
installManPage debian/usr/share/man/man1/fpp.1
|
|
'';
|
|
|
|
meta = {
|
|
description = "CLI program that accepts piped input and presents files for selection";
|
|
homepage = "https://facebook.github.io/PathPicker/";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "fpp";
|
|
};
|
|
}
|