1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

rhsrvany: init at 1.1

This commit is contained in:
lukts30 2024-10-07 22:50:46 +02:00 committed by Bjørn Forsman
parent cd7f80982b
commit 6322590d46

View file

@ -0,0 +1,30 @@
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rhsrvany";
version = "1.1";
src = fetchFromGitHub {
owner = "rwmjones";
repo = "rhsrvany";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-eeEiAdm7NO5fFYKtHQbeBq4RhP8Xwgw2p2Wkm+n0EWM=";
};
strictDeps = true;
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "Free equivalent of Windows \"srvany\" program for turning any Windows program or script into a service";
homepage = "https://github.com/rwmjones/rhsrvany";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ lukts30 ];
platforms = lib.platforms.windows;
};
})