pipr: init at 0.0.12
This commit is contained in:
parent
d1a1a7f559
commit
416cfc71c0
34
pkgs/applications/misc/pipr/default.nix
Normal file
34
pkgs/applications/misc/pipr/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, bubblewrap
|
||||
, makeWrapper
|
||||
, lib
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pipr";
|
||||
version = "0.0.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ElKowar";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0l7yvpc59mbzh87lngj6pj8w586fwa07829l5x9mmxnkf6srapmc";
|
||||
};
|
||||
|
||||
cargoSha256 = "1xzc1x5mjvj2jgdhwmjbdbqi8d7ln1ss7akn72d96kmy1wsj1qsa";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
postFixup = ''
|
||||
wrapProgram "$out/bin/pipr" --prefix PATH : ${lib.makeBinPath [ bubblewrap ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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;
|
||||
};
|
||||
}
|
@ -6089,6 +6089,8 @@ in
|
||||
|
||||
pirate-get = callPackage ../tools/networking/pirate-get { };
|
||||
|
||||
pipr = callPackage ../applications/misc/pipr { };
|
||||
|
||||
pipreqs = callPackage ../tools/misc/pipreqs { };
|
||||
|
||||
pius = callPackage ../tools/security/pius { };
|
||||
|
Loading…
Reference in New Issue
Block a user