mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
pipectl: init at 0.2.2
This commit is contained in:
parent
2a2320a030
commit
495c302597
26
pkgs/tools/misc/pipectl/default.nix
Normal file
26
pkgs/tools/misc/pipectl/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pipectl";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ferdi265";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-wa/SKKNXkl8XxE7XORodoAlrMc2QNGXGPE+/yya209Y=";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Ferdi265/pipectl";
|
||||
license = licenses.gpl3;
|
||||
description = "a simple named pipe management utility";
|
||||
maintainers = with maintainers; [ synthetica ];
|
||||
};
|
||||
}
|
@ -8627,6 +8627,8 @@ with pkgs;
|
||||
|
||||
pipe-rename = callPackage ../tools/misc/pipe-rename { };
|
||||
|
||||
pipectl = callPackage ../tools/misc/pipectl { };
|
||||
|
||||
pitivi = callPackage ../applications/video/pitivi { };
|
||||
|
||||
prism = callPackage ../applications/video/prism { };
|
||||
|
Loading…
Reference in New Issue
Block a user