File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments