main
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6buildGoModule {
7 pname = "gitmal";
8 version = "1.0.2";
9
10 src = fetchFromGitHub {
11 owner = "antonmedv";
12 repo = "gitmal";
13 tag = "v1.0.2";
14 hash = "sha256-RDXtB/fgyqL3b5e2BVK5si5pIcw/un3KJy1/cU0GMXo=";
15 };
16
17 vendorHash = "sha256-12kkN1rh9OWG8YIr9KyHtm1TFJQPUtSpD6ub8zokAhQ=";
18
19 meta = {
20 description = " A static page generator for repos";
21 homepage = "https://github.com/antonmedv/gitmal";
22 license = lib.licenses.mit;
23 platforms = lib.platforms.linux;
24 };
25}