this repo has no description
2
fork

Configure Feed

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

have to keep tic80 on v0.8

+10 -10
+4 -4
flake.lock
··· 312 312 "vimwiki-cli": "vimwiki-cli" 313 313 }, 314 314 "locked": { 315 - "lastModified": 1670943608, 316 - "narHash": "sha256-GH4QqSKh8qTY/O58QcOjlgncJq6+VmtqPrIvbFnQAI0=", 315 + "lastModified": 1671087600, 316 + "narHash": "sha256-4bqDxf1tJxAg7AWasCFN4U6jgpRLlZnHBNNEimDAcPQ=", 317 317 "ref": "main", 318 - "rev": "9eabdc3c6f3c16057d49261318375fbc3256a33b", 319 - "revCount": 456, 318 + "rev": "0d62eb676164faa2c3020f9c8f8e26c4397d05c3", 319 + "revCount": 459, 320 320 "type": "git", 321 321 "url": "ssh://gitea@git.sealight.xyz/aynish/kitaab" 322 322 },
+6 -6
pkgs/tic-80.nix
··· 1 1 # Stolen from: https://gist.github.com/jjwatt/c83c02e6903c8ffaf546fe5eb27e7d25?permalink_comment_id=3305141#gistcomment-3305141 2 2 { pkgs, ... }: 3 - stdenv.mkDerivation rec { 3 + pkgs.stdenv.mkDerivation rec { 4 4 name = "tic-80"; 5 - src = builtins.fetchGit { 6 - fetchSubmodules = true; 5 + src = pkgs.fetchgit { 6 + fetchSubmodules = true; # not supported by builtins.fetchGit :( 7 7 url = "https://github.com/nesbox/TIC-80"; 8 - rev = "0feb848378fc40d16aaa609ed7a2148d7a064ac4"; 8 + rev = "0feb848378fc40d16aaa609ed7a2148d7a064ac4"; # v0.8 didn't look at what changed in the newer versions 9 9 sha256 = "12fl9wfc1577rmzcll50r3hq582010bpwd3yi15ji2vadc2q1w9l"; 10 10 }; 11 11 buildInputs = with pkgs; [ ··· 53 53 cp -v bin/tic80 $out/bin 54 54 ''; 55 55 56 - tic80Item = makeDesktopItem { 56 + tic80Item = pkgs.makeDesktopItem { 57 57 name = "TIC-80"; 58 58 exec = "tic80"; 59 59 comment = "Tiny Computer"; 60 - categories = "Development;Game"; 60 + categories = [ "Development" "Game" ]; 61 61 desktopName = "TIC-80"; 62 62 }; 63 63 }