blob: 86269ab6556cd5ec206850de2d2fa540b1058714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ lib, buildSMPlugin, fetchFromGitHub }:
buildSMPlugin rec {
pname = "Open-Fortress-Tools";
version = "2024-08-22";
src = fetchFromGitHub {
owner = "openfortress";
repo = "SM-${pname}";
rev = "05cb78a9411843e16ddab5f651edec5f481200b1";
hash = "sha256-Y2uCVB2fivzQq7bC7g8KK/qiido7qopv9tcLhEr/h6w=";
};
removePrebuilt = false;
dontBuild = true;
}
|