nixpkgs/pkgs/tools/misc/pipectl/default.nix
2024-06-27 01:45:01 +00:00

33 lines
633 B
Nix

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