nixpkgs/pkgs/tools/misc/pipectl/default.nix
2024-03-03 04:04:27 +00:00

33 lines
635 B
Nix

{ stdenv
, lib
, fetchFromGitHub
, cmake
, scdoc
}:
stdenv.mkDerivation rec {
pname = "pipectl";
version = "0.4.2";
src = fetchFromGitHub {
owner = "Ferdi265";
repo = pname;
rev = "v${version}";
hash = "sha256-Ixch5iyeIjx+hSvln8L0N8pXG7ordpsFVroqZPUzAG0=";
};
nativeBuildInputs = [ cmake scdoc ];
cmakeFlags = [
"-DINSTALL_DOCUMENTATION=ON"
];
meta = with lib; {
homepage = "https://github.com/Ferdi265/pipectl";
license = licenses.gpl3;
description = "a simple named pipe management utility";
maintainers = with maintainers; [ synthetica ];
mainProgram = "pipectl";
};
}