blob: 0652547a63d78a70fa3f450361a2f93804c4c392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
pkgs,
lib,
fetchgit,
}:
pkgs.buildGoModule rec {
name = "r2wars-web-${version}";
version = "0.1.2";
src = fetchgit {
url = "git://github.com/hanemile/r2wars-web.git";
hash = "sha256-/LOjnCnns7nIV25aKUFCNoE3sZrZ72lvWSBlD4zuHQc=";
};
vendorHash = null;
CGO_ENABLED = 0;
subPackages = [ "src" ];
# postInstall = ''
# mkdir -p $out
# cp -r templates $out
# mv $out/bin/src $out/bin/r2wars-web
# '';
doCheck = false;
meta = {
description = "A golang implementation of r2wars";
homepage = "https://r2wa.rs";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hanemile ];
};
}
|