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

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

27 lines
536 B
Nix
Raw Normal View History

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