tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: make nix build work

dusk 4c9f6f89 3a409f66

+97 -2
+2
.gitignore
··· 26 26 events.sqlite-journal 27 27 events.sqlite-wal 28 28 events.sqlite-shm 29 + 30 + result
+93
flake.lock
··· 1 + { 2 + "nodes": { 3 + "naked-shell": { 4 + "locked": { 5 + "lastModified": 1681286841, 6 + "narHash": "sha256-3XlJrwlR0nBiREnuogoa5i1b4+w/XPe0z8bbrJASw0g=", 7 + "owner": "90-008", 8 + "repo": "mk-naked-shell", 9 + "rev": "7612f828dd6f22b7fb332cc69440e839d7ffe6bd", 10 + "type": "github" 11 + }, 12 + "original": { 13 + "owner": "90-008", 14 + "repo": "mk-naked-shell", 15 + "type": "github" 16 + } 17 + }, 18 + "nixpkgs": { 19 + "locked": { 20 + "lastModified": 1752687322, 21 + "narHash": "sha256-RKwfXA4OZROjBTQAl9WOZQFm7L8Bo93FQwSJpAiSRvo=", 22 + "owner": "nixos", 23 + "repo": "nixpkgs", 24 + "rev": "6e987485eb2c77e5dcc5af4e3c70843711ef9251", 25 + "type": "github" 26 + }, 27 + "original": { 28 + "owner": "nixos", 29 + "ref": "nixos-unstable", 30 + "repo": "nixpkgs", 31 + "type": "github" 32 + } 33 + }, 34 + "nixpkgs-lib": { 35 + "locked": { 36 + "lastModified": 1751159883, 37 + "narHash": "sha256-urW/Ylk9FIfvXfliA1ywh75yszAbiTEVgpPeinFyVZo=", 38 + "owner": "nix-community", 39 + "repo": "nixpkgs.lib", 40 + "rev": "14a40a1d7fb9afa4739275ac642ed7301a9ba1ab", 41 + "type": "github" 42 + }, 43 + "original": { 44 + "owner": "nix-community", 45 + "repo": "nixpkgs.lib", 46 + "type": "github" 47 + } 48 + }, 49 + "parts": { 50 + "inputs": { 51 + "nixpkgs-lib": "nixpkgs-lib" 52 + }, 53 + "locked": { 54 + "lastModified": 1751413152, 55 + "narHash": "sha256-Tyw1RjYEsp5scoigs1384gIg6e0GoBVjms4aXFfRssQ=", 56 + "owner": "hercules-ci", 57 + "repo": "flake-parts", 58 + "rev": "77826244401ea9de6e3bac47c2db46005e1f30b5", 59 + "type": "github" 60 + }, 61 + "original": { 62 + "owner": "hercules-ci", 63 + "repo": "flake-parts", 64 + "type": "github" 65 + } 66 + }, 67 + "root": { 68 + "inputs": { 69 + "naked-shell": "naked-shell", 70 + "nixpkgs": "nixpkgs", 71 + "parts": "parts", 72 + "systems": "systems" 73 + } 74 + }, 75 + "systems": { 76 + "locked": { 77 + "lastModified": 1680978846, 78 + "narHash": "sha256-Gtqg8b/v49BFDpDetjclCYXm8mAnTrUzR0JnE2nv5aw=", 79 + "owner": "nix-systems", 80 + "repo": "x86_64-linux", 81 + "rev": "2ecfcac5e15790ba6ce360ceccddb15ad16d08a8", 82 + "type": "github" 83 + }, 84 + "original": { 85 + "owner": "nix-systems", 86 + "repo": "x86_64-linux", 87 + "type": "github" 88 + } 89 + } 90 + }, 91 + "root": "root", 92 + "version": 7 93 + }
+2 -2
flake.nix
··· 24 24 25 25 src = ./.; 26 26 27 - outputHash = ""; 27 + outputHash = "sha256-IK8D8c/Bzckd44/QnDsUQqLqhJaPR36ilzQNIn0Uyns="; 28 28 outputHashAlgo = "sha256"; 29 29 outputHashMode = "recursive"; 30 30 ··· 62 62 cp -R --no-preserve=ownership ${config.packages.nsid-tracker-modules} node_modules 63 63 find node_modules -type d -exec chmod 755 {} \; 64 64 substituteInPlace node_modules/.bin/vite \ 65 - --replace-fail "/usr/bin/env node" "${pkgs.nodejs-slim_latest}/bin/node" 65 + --replace-fail "/usr/bin/env node" "${pkgs.bun}/bin/bun" 66 66 runHook postConfigure 67 67 ''; 68 68 buildPhase = ''