nixpkgs/pkgs/tools/misc/pipectl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
606 B
Nix
Raw Normal View History

2022-01-01 12:57:53 +01:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
2022-08-09 14:18:12 +02:00
, scdoc
2022-01-01 12:57:53 +01:00
}:
stdenv.mkDerivation rec {
pname = "pipectl";
2022-08-09 14:18:12 +02:00
version = "0.4.1";
2022-01-01 12:57:53 +01:00
src = fetchFromGitHub {
owner = "Ferdi265";
repo = pname;
rev = "v${version}";
2022-08-09 14:18:12 +02:00
hash = "sha256-dWRem9VHzMwVo+ahUagZB2r4Ag8PyBef5X41vVpZcAc=";
2022-01-01 12:57:53 +01:00
};
2022-08-09 14:18:12 +02:00
nativeBuildInputs = [ cmake scdoc ];
cmakeFlags = [
"-DINSTALL_DOCUMENTATION=ON"
];
2022-01-01 12:57:53 +01:00
meta = with lib; {
homepage = "https://github.com/Ferdi265/pipectl";
license = licenses.gpl3;
description = "a simple named pipe management utility";
maintainers = with maintainers; [ synthetica ];
};
}