mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
31 lines
779 B
Nix
31 lines
779 B
Nix
{ stdenv, fetchFromGitHub, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fpp";
|
|
version = "0.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "PathPicker";
|
|
rev = version;
|
|
sha256 = "08p2xlz045fqyb0aj9pwwf2s5nb4b02i8zj81732q59yx5c6lrlv";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
meta = {
|
|
description = "CLI program that accepts piped input and presents files for selection";
|
|
homepage = "https://facebook.github.io/PathPicker/";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|