dart-sass: 1.83.0 -> 1.83.1 (#372038)
[NixPkgs.git] / pkgs / by-name / pi / pipectl / package.nix
blob9c77e631429e37030106e7db85d1ae187f444f88
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   cmake,
6   scdoc,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "pipectl";
11   version = "0.5.1";
13   src = fetchFromGitHub {
14     owner = "Ferdi265";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-pNBw1ukNaqu40qPXnORUGApYpJ/0EAO9Tq5zAbDe33I=";
18   };
20   nativeBuildInputs = [
21     cmake
22     scdoc
23   ];
25   cmakeFlags = [
26     "-DINSTALL_DOCUMENTATION=ON"
27   ];
29   meta = with lib; {
30     homepage = "https://github.com/Ferdi265/pipectl";
31     license = licenses.gpl3;
32     description = "Simple named pipe management utility";
33     maintainers = with maintainers; [ synthetica ];
34     mainProgram = "pipectl";
35   };