2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-08-07 16:52:25 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, bubblewrap
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "pipr";
|
2021-11-06 15:22:25 +00:00
|
|
|
version = "0.0.16";
|
2020-08-07 16:52:25 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ElKowar";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-11-06 15:22:25 +00:00
|
|
|
sha256 = "sha256-6jtUNhib6iveuZ7qUKK7AllyMKFpZ8OUUaIieFqseY8=";
|
2020-08-07 16:52:25 +00:00
|
|
|
};
|
|
|
|
|
2021-11-06 15:22:25 +00:00
|
|
|
cargoSha256 = "sha256-SLOiX8z8LuQ9VA/lg0lOhqs85MGs0vmeP74cS6sgghI=";
|
2020-08-07 16:52:25 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram "$out/bin/pipr" --prefix PATH : ${lib.makeBinPath [ bubblewrap ]}
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-08-07 16:52:25 +00:00
|
|
|
description = "A commandline-tool to interactively write shell pipelines";
|
|
|
|
homepage = "https://github.com/ElKowar/pipr";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elkowar ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|