forge
login
or
join now
ptr.pet
/
aturlist
star
0
fork
atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
aturi indexer with listRecords and countRecords endpoints
star
0
fork
atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
overview
issues
pulls
pipelines
init
dawn
3 months ago
8c99eabc
+91
3 changed files
expand all
collapse all
unified
split
.gitignore
flake.lock
flake.nix
+4
.gitignore
reviewed
···
1
1
+
.direnv
2
2
+
.envrc
3
3
+
result
4
4
+
target
+61
flake.lock
reviewed
···
1
1
+
{
2
2
+
"nodes": {
3
3
+
"nixpkgs": {
4
4
+
"locked": {
5
5
+
"lastModified": 1768783163,
6
6
+
"narHash": "sha256-tLj4KcRDLakrlpvboTJDKsrp6z2XLwyQ4Zmo+w8KsY4=",
7
7
+
"owner": "nixos",
8
8
+
"repo": "nixpkgs",
9
9
+
"rev": "bde09022887110deb780067364a0818e89258968",
10
10
+
"type": "github"
11
11
+
},
12
12
+
"original": {
13
13
+
"owner": "nixos",
14
14
+
"ref": "nixpkgs-unstable",
15
15
+
"repo": "nixpkgs",
16
16
+
"type": "github"
17
17
+
}
18
18
+
},
19
19
+
"nixpkgs-lib": {
20
20
+
"locked": {
21
21
+
"lastModified": 1765674936,
22
22
+
"narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=",
23
23
+
"owner": "nix-community",
24
24
+
"repo": "nixpkgs.lib",
25
25
+
"rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85",
26
26
+
"type": "github"
27
27
+
},
28
28
+
"original": {
29
29
+
"owner": "nix-community",
30
30
+
"repo": "nixpkgs.lib",
31
31
+
"type": "github"
32
32
+
}
33
33
+
},
34
34
+
"parts": {
35
35
+
"inputs": {
36
36
+
"nixpkgs-lib": "nixpkgs-lib"
37
37
+
},
38
38
+
"locked": {
39
39
+
"lastModified": 1768135262,
40
40
+
"narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
41
41
+
"owner": "hercules-ci",
42
42
+
"repo": "flake-parts",
43
43
+
"rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
44
44
+
"type": "github"
45
45
+
},
46
46
+
"original": {
47
47
+
"owner": "hercules-ci",
48
48
+
"repo": "flake-parts",
49
49
+
"type": "github"
50
50
+
}
51
51
+
},
52
52
+
"root": {
53
53
+
"inputs": {
54
54
+
"nixpkgs": "nixpkgs",
55
55
+
"parts": "parts"
56
56
+
}
57
57
+
}
58
58
+
},
59
59
+
"root": "root",
60
60
+
"version": 7
61
61
+
}
+26
flake.nix
reviewed
···
1
1
+
{
2
2
+
inputs.parts.url = "github:hercules-ci/flake-parts";
3
3
+
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
4
4
+
5
5
+
outputs =
6
6
+
inp:
7
7
+
inp.parts.lib.mkFlake { inputs = inp; } {
8
8
+
systems = [ "x86_64-linux" ];
9
9
+
perSystem =
10
10
+
{
11
11
+
pkgs,
12
12
+
config,
13
13
+
...
14
14
+
}:
15
15
+
{
16
16
+
devShells = {
17
17
+
default = pkgs.mkShell {
18
18
+
buildInputs = with pkgs; [
19
19
+
rust-analyzer
20
20
+
cargo
21
21
+
];
22
22
+
};
23
23
+
};
24
24
+
};
25
25
+
};
26
26
+
}