Skip to content

Commit 6322590

Browse files
lukts30bjornfor
authored andcommitted
rhsrvany: init at 1.1
1 parent cd7f809 commit 6322590

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
lib,
3+
stdenv,
4+
fetchFromGitHub,
5+
autoreconfHook,
6+
}:
7+
8+
stdenv.mkDerivation (finalAttrs: {
9+
pname = "rhsrvany";
10+
version = "1.1";
11+
12+
src = fetchFromGitHub {
13+
owner = "rwmjones";
14+
repo = "rhsrvany";
15+
rev = "refs/tags/v${finalAttrs.version}";
16+
hash = "sha256-eeEiAdm7NO5fFYKtHQbeBq4RhP8Xwgw2p2Wkm+n0EWM=";
17+
};
18+
19+
strictDeps = true;
20+
21+
nativeBuildInputs = [ autoreconfHook ];
22+
23+
meta = {
24+
description = "Free equivalent of Windows \"srvany\" program for turning any Windows program or script into a service";
25+
homepage = "https://github.com/rwmjones/rhsrvany";
26+
license = lib.licenses.gpl2Only;
27+
maintainers = with lib.maintainers; [ lukts30 ];
28+
platforms = lib.platforms.windows;
29+
};
30+
})

0 commit comments

Comments
 (0)