Skip to content

Commit 485c592

Browse files
committed
Bump reflex platform
1 parent 064a0e8 commit 485c592

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

dep/reflex-platform/default.nix

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
11
# DO NOT HAND-EDIT THIS FILE
2-
let fetch = { private ? false, fetchSubmodules ? false, owner, repo, rev, sha256, ... }:
3-
if !fetchSubmodules && !private then builtins.fetchTarball {
4-
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz"; inherit sha256;
5-
} else (import <nixpkgs> {}).fetchFromGitHub {
6-
inherit owner repo rev sha256 fetchSubmodules private;
7-
};
8-
in import (fetch (builtins.fromJSON (builtins.readFile ./github.json)))
2+
import (import ./thunk.nix)

dep/reflex-platform/github.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"repo": "reflex-platform",
44
"branch": "master",
55
"private": false,
6-
"rev": "c9d11db1b98855fe8ab24a3ff6a5dbe0ad902ad9",
7-
"sha256": "0sfzkqdvyah5mwvmli0wq1nl0b8cvk2cmfgfy4rz57wv42x3099y"
6+
"rev": "efc6d923c633207d18bd4d8cae3e20110a377864",
7+
"sha256": "121rmnkx8nwiy96ipfyyv6vrgysv0zpr2br46y70zf4d0y1h1lz5"
88
}

dep/reflex-platform/thunk.nix

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# DO NOT HAND-EDIT THIS FILE
2+
let fetch = { private ? false, fetchSubmodules ? false, owner, repo, rev, sha256, ... }:
3+
if !fetchSubmodules && !private then builtins.fetchTarball {
4+
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz"; inherit sha256;
5+
} else (import <nixpkgs> {}).fetchFromGitHub {
6+
inherit owner repo rev sha256 fetchSubmodules private;
7+
};
8+
json = builtins.fromJSON (builtins.readFile ./github.json);
9+
in fetch json

0 commit comments

Comments
 (0)