tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
container2wasm: add changelog to meta
Fabian Affolter
2 years ago
5d67dd66
73b01822
+12
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
container2wasm
default.nix
+12
-6
pkgs/development/tools/container2wasm/default.nix
···
10
10
src = fetchFromGitHub {
11
11
owner = "ktock";
12
12
repo = "container2wasm";
13
13
-
rev = "v${version}";
13
13
+
rev = "refs/tags/v${version}";
14
14
hash = "sha256-m8pO7xkYjwvDoDreOPuiKNavFWcHn8Fy+F/eArBWRPM=";
15
15
};
16
16
17
17
vendorHash = "sha256-BiQzNXEZ7O+Xb2SQKYVQRMtm/fSmr+PD+RBLpCywkyQ=";
18
18
19
19
-
ldflags = [ "-s" "-w" ];
19
19
+
ldflags = [
20
20
+
"-s"
21
21
+
"-w"
22
22
+
];
20
23
21
21
-
subPackages = [ "cmd/c2w" ];
24
24
+
subPackages = [
25
25
+
"cmd/c2w"
26
26
+
];
22
27
23
23
-
meta = {
28
28
+
meta = with lib; {
24
29
description = "Container to WASM converter";
25
30
homepage = "https://github.com/ktock/container2wasm";
26
26
-
license = lib.licenses.asl20;
27
27
-
maintainers = with lib.maintainers; [ dit7ya ];
31
31
+
changelog = "https://github.com/ktock/container2wasm/releases/tag/v${version}";
32
32
+
license = licenses.asl20;
33
33
+
maintainers = with maintainers; [ dit7ya ];
28
34
mainProgram = "c2w";
29
35
};
30
36
}