pipectl: 0.3.0 -> 0.4.1

This commit is contained in:
Ferdinand Bachmann 2022-08-09 14:18:12 +02:00 committed by Franz Pletz
parent f38bb4d487
commit 6737d2cfc8

View File

@ -2,20 +2,25 @@
, lib , lib
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, scdoc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "pipectl"; pname = "pipectl";
version = "0.3.0"; version = "0.4.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Ferdi265"; owner = "Ferdi265";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-+o5hIDtDAh4r+AKCUhueQ3GBYf2sZtMATGX73Qg+tbo="; hash = "sha256-dWRem9VHzMwVo+ahUagZB2r4Ag8PyBef5X41vVpZcAc=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake scdoc ];
cmakeFlags = [
"-DINSTALL_DOCUMENTATION=ON"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/Ferdi265/pipectl"; homepage = "https://github.com/Ferdi265/pipectl";