pipectl: init at 0.2.2

This commit is contained in:
Patrick Hilhorst 2022-01-01 12:57:53 +01:00
parent 2a2320a030
commit 495c302597
No known key found for this signature in database
GPG Key ID: 3BB083304DADC0FF
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };