tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
stuffbin: init at 1.1.0
Raito Bezarius
3 years ago
e37d2a63
ff4f69a1
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
filesystems
stuffbin
default.nix
top-level
all-packages.nix
+25
pkgs/tools/filesystems/stuffbin/default.nix
reviewed
···
1
1
+
{ lib, buildGoModule, fetchFromGitHub }:
2
2
+
3
3
+
buildGoModule rec {
4
4
+
pname = "stuffbin";
5
5
+
version = "1.1.0";
6
6
+
7
7
+
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
8
8
+
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "knadh";
11
11
+
repo = "stuffbin";
12
12
+
rev = "v${version}";
13
13
+
sha256 = "sha256-M72xNh7bKUMLzA+M8bJB++kJ5KCrkboQm1v8BasP3Yo=";
14
14
+
};
15
15
+
16
16
+
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
17
17
+
18
18
+
meta = with lib; {
19
19
+
description = "Compress and embed static files and assets into Go binaries and access them with a virtual file system in production";
20
20
+
homepage = "https://github.com/knadh/stuffbin";
21
21
+
changelog = "https://github.com/knadh/stuffbin/releases/tag/v${version}";
22
22
+
maintainers = with maintainers; [ raitobezarius ];
23
23
+
license = licenses.mit;
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
30541
30541
30542
30542
stretchly = callPackage ../applications/misc/stretchly { };
30543
30543
30544
30544
+
stuffbin = callPackage ../tools/filesystems/stuffbin { };
30545
30545
+
30544
30546
stumpish = callPackage ../applications/window-managers/stumpish {};
30545
30547
30546
30548
stumpwm = lispPackages.stumpwm;