mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
31 lines
720 B
Nix
31 lines
720 B
Nix
{
|
|
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;
|
|
};
|
|
})
|