nixpkgs/pkgs/tools/misc/pipectl/default.nix
2022-01-18 20:29:10 +01:00

27 lines
536 B
Nix

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