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
11
stdenvNoCC.mkDerivation (finalAttrs: {
12
pname = "openlist-frontend";
13
-
version = "4.0.9";
14
15
src = fetchFromGitHub {
16
owner = "OpenListTeam";
17
repo = "OpenList-Frontend";
18
tag = "v${finalAttrs.version}";
19
-
hash = "sha256-QR5Rh09pO7j9ecmHTbm64Om/rhqX8XaczNqAHMO1XiU=";
20
};
21
22
i18n = fetchzip {
23
url = "https://github.com/OpenListTeam/OpenList-Frontend/releases/download/v${finalAttrs.version}/i18n.tar.gz";
24
-
hash = "sha256-hBo9fUctSuQG5dP2e3VCNOnT7Koxkdk0olSef0vjR6I=";
25
stripRoot = false;
26
};
27
···
33
pnpmDeps = pnpm_10.fetchDeps {
34
inherit (finalAttrs) pname version src;
35
fetcherVersion = 1;
36
-
hash = "sha256-ty9mElTSiDbXHm9vgguzszY/F+YP8hPfbAlQnjdAaJE=";
37
};
38
39
buildPhase = ''
···
10
11
stdenvNoCC.mkDerivation (finalAttrs: {
12
pname = "openlist-frontend";
13
+
version = "4.1.0";
14
15
src = fetchFromGitHub {
16
owner = "OpenListTeam";
17
repo = "OpenList-Frontend";
18
tag = "v${finalAttrs.version}";
19
+
hash = "sha256-E1kdoTLL9SloSJBYB277BVYwgKp8rmFYmCj9yb6Otuw=";
20
};
21
22
i18n = fetchzip {
23
url = "https://github.com/OpenListTeam/OpenList-Frontend/releases/download/v${finalAttrs.version}/i18n.tar.gz";
24
+
hash = "sha256-/g6TXeCo+tkqE5xF2foghATErGEWUZuxtg70uDA5UFA=";
25
stripRoot = false;
26
};
27
···
33
pnpmDeps = pnpm_10.fetchDeps {
34
inherit (finalAttrs) pname version src;
35
fetcherVersion = 1;
36
+
hash = "sha256-lWrh7jRx8DkwPZkk5Eh9YndfLsPIwCOUeLdieonZBgI=";
37
};
38
39
buildPhase = ''
+3
-3
pkgs/by-name/op/openlist/package.nix
···
11
12
buildGoModule (finalAttrs: {
13
pname = "openlist";
14
-
version = "4.0.9";
15
16
src = fetchFromGitHub {
17
owner = "OpenListTeam";
18
repo = "OpenList";
19
tag = "v${finalAttrs.version}";
20
-
hash = "sha256-RsTcaq5w5EY+zddjTI5BJuDqmbFmZwxq4ng9NUXZvIk=";
21
# populate values that require us to use git. By doing this in postFetch we
22
# can delete .git afterwards and maintain better reproducibility of the src.
23
leaveDotGit = true;
···
33
frontend = callPackage ./frontend.nix { };
34
35
proxyVendor = true;
36
-
vendorHash = "sha256-zDN2sw3oYVDTlP5qqe+RkcZ2Lup/vlB4jnluiA/wLLU=";
37
38
buildInputs = [ fuse ];
39
···
11
12
buildGoModule (finalAttrs: {
13
pname = "openlist";
14
+
version = "4.1.0";
15
16
src = fetchFromGitHub {
17
owner = "OpenListTeam";
18
repo = "OpenList";
19
tag = "v${finalAttrs.version}";
20
+
hash = "sha256-505rEnqIwn1EGhzqhcVWYgYqyPsV/obJzaHaK9W2tVA=";
21
# populate values that require us to use git. By doing this in postFetch we
22
# can delete .git afterwards and maintain better reproducibility of the src.
23
leaveDotGit = true;
···
33
frontend = callPackage ./frontend.nix { };
34
35
proxyVendor = true;
36
+
vendorHash = "sha256-J8ssJbILb3Gf6Br/PYkRAn4Haduf82iCYCfSAEi3nO4=";
37
38
buildInputs = [ fuse ];
39