tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openlist: 4.0.9 -> 4.1.0
R. Ryantm
6 months ago
7cd520e0
a9cd681b
+7
-7
2 changed files
expand all
collapse all
unified
split
pkgs
by-name
op
openlist
frontend.nix
package.nix
+4
-4
pkgs/by-name/op/openlist/frontend.nix
···
10
10
11
11
stdenvNoCC.mkDerivation (finalAttrs: {
12
12
pname = "openlist-frontend";
13
13
-
version = "4.0.9";
13
13
+
version = "4.1.0";
14
14
15
15
src = fetchFromGitHub {
16
16
owner = "OpenListTeam";
17
17
repo = "OpenList-Frontend";
18
18
tag = "v${finalAttrs.version}";
19
19
-
hash = "sha256-QR5Rh09pO7j9ecmHTbm64Om/rhqX8XaczNqAHMO1XiU=";
19
19
+
hash = "sha256-E1kdoTLL9SloSJBYB277BVYwgKp8rmFYmCj9yb6Otuw=";
20
20
};
21
21
22
22
i18n = fetchzip {
23
23
url = "https://github.com/OpenListTeam/OpenList-Frontend/releases/download/v${finalAttrs.version}/i18n.tar.gz";
24
24
-
hash = "sha256-hBo9fUctSuQG5dP2e3VCNOnT7Koxkdk0olSef0vjR6I=";
24
24
+
hash = "sha256-/g6TXeCo+tkqE5xF2foghATErGEWUZuxtg70uDA5UFA=";
25
25
stripRoot = false;
26
26
};
27
27
···
33
33
pnpmDeps = pnpm_10.fetchDeps {
34
34
inherit (finalAttrs) pname version src;
35
35
fetcherVersion = 1;
36
36
-
hash = "sha256-ty9mElTSiDbXHm9vgguzszY/F+YP8hPfbAlQnjdAaJE=";
36
36
+
hash = "sha256-lWrh7jRx8DkwPZkk5Eh9YndfLsPIwCOUeLdieonZBgI=";
37
37
};
38
38
39
39
buildPhase = ''
+3
-3
pkgs/by-name/op/openlist/package.nix
···
11
11
12
12
buildGoModule (finalAttrs: {
13
13
pname = "openlist";
14
14
-
version = "4.0.9";
14
14
+
version = "4.1.0";
15
15
16
16
src = fetchFromGitHub {
17
17
owner = "OpenListTeam";
18
18
repo = "OpenList";
19
19
tag = "v${finalAttrs.version}";
20
20
-
hash = "sha256-RsTcaq5w5EY+zddjTI5BJuDqmbFmZwxq4ng9NUXZvIk=";
20
20
+
hash = "sha256-505rEnqIwn1EGhzqhcVWYgYqyPsV/obJzaHaK9W2tVA=";
21
21
# populate values that require us to use git. By doing this in postFetch we
22
22
# can delete .git afterwards and maintain better reproducibility of the src.
23
23
leaveDotGit = true;
···
33
33
frontend = callPackage ./frontend.nix { };
34
34
35
35
proxyVendor = true;
36
36
-
vendorHash = "sha256-zDN2sw3oYVDTlP5qqe+RkcZ2Lup/vlB4jnluiA/wLLU=";
36
36
+
vendorHash = "sha256-J8ssJbILb3Gf6Br/PYkRAn4Haduf82iCYCfSAEi3nO4=";
37
37
38
38
buildInputs = [ fuse ];
39
39