this repo has no description
0
fork

Configure Feed

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

viddy?

+12 -71
+3 -1
darwin/darwin.nix
··· 45 45 "libpng" 46 46 "libogg" 47 47 "libvorbis" 48 - "hashlink" 49 48 "mbedtls@2" 50 49 "nano" 51 50 "ninja" ··· 72 71 "fd" 73 72 "git-cliff" 74 73 "glslang" 74 + "go" 75 + "viddy" 76 + "jj" 75 77 ]; 76 78 casks = [ 77 79 "dolphin@dev"
+9 -9
darwin/flake.lock
··· 68 68 ] 69 69 }, 70 70 "locked": { 71 - "lastModified": 1739757849, 72 - "narHash": "sha256-Gs076ot1YuAAsYVcyidLKUMIc4ooOaRGO0PqTY7sBzA=", 71 + "lastModified": 1744117652, 72 + "narHash": "sha256-t7dFCDl4vIOOUMhEZnJF15aAzkpaup9x4ZRGToDFYWI=", 73 73 "owner": "nix-community", 74 74 "repo": "home-manager", 75 - "rev": "9d3d080aec2a35e05a15cedd281c2384767c2cfe", 75 + "rev": "b4e98224ad1336751a2ac7493967a4c9f6d9cb3f", 76 76 "type": "github" 77 77 }, 78 78 "original": { ··· 89 89 ] 90 90 }, 91 91 "locked": { 92 - "lastModified": 1741126078, 93 - "narHash": "sha256-ng0a4cIq3c9E3iGKomlwqKzVYs2RLOzQho2U1Mc2sqU=", 92 + "lastModified": 1743127615, 93 + "narHash": "sha256-+sMGqywrSr50BGMLMeY789mSrzjkoxZiu61eWjYS/8o=", 94 94 "owner": "LnL7", 95 95 "repo": "nix-darwin", 96 - "rev": "c172f50b55b087f8e7801631de977461603bb976", 96 + "rev": "fc843893cecc1838a59713ee3e50e9e7edc6207c", 97 97 "type": "github" 98 98 }, 99 99 "original": { ··· 105 105 }, 106 106 "nixpkgs": { 107 107 "locked": { 108 - "lastModified": 1741382293, 109 - "narHash": "sha256-YdWOZCa4h2L9bxS/nUdqkimUhDkaQSI0gJot6vi67Os=", 108 + "lastModified": 1744664988, 109 + "narHash": "sha256-tv5QkwoHUT7957XYPOWpyBD440SdfPBPBVymbXlmqsc=", 110 110 "owner": "NixOS", 111 111 "repo": "nixpkgs", 112 - "rev": "efa54e7d3a1f4b475f29aade61a234672343a2ca", 112 + "rev": "eff64d6c1a13c9a3348f332f75cbde1935dc3d21", 113 113 "type": "github" 114 114 }, 115 115 "original": {
-2
darwin/flake.nix
··· 41 41 pkgs.difftastic 42 42 pkgs.rustup 43 43 pkgs.xcodes 44 - pkgs.jj 45 44 pkgs.mergiraf 46 45 pkgs.lazygit 47 46 pkgs.zulu23 ··· 98 97 { 99 98 nixpkgs.overlays = [ 100 99 (import ../overlays/fish.nix) 101 - (import ../overlays/jj.nix) 102 100 ]; 103 101 } 104 102 ];
-59
overlays/jj.nix
··· 1 - final: prev: { 2 - jj = prev.rustPlatform.buildRustPackage rec { 3 - pname = "jj"; 4 - version = "unstable-2025-01-10"; 5 - 6 - src = prev.fetchFromGitHub { 7 - owner = "martinvonz"; 8 - repo = "jj"; 9 - rev = "main"; 10 - hash = "sha256-77oTScsUU1BZMytdrncoWFuOC0XdiYp8ZPSQjFHlHRc="; # Replace with actual hash 11 - }; 12 - 13 - cargoLock = { 14 - lockFile = src + "/Cargo.lock"; 15 - # This will be empty at first, Nix will tell us what hashes we need 16 - outputHashes = {}; 17 - }; 18 - 19 - nativeBuildInputs = with prev; [ 20 - pkg-config 21 - cmake 22 - perl 23 - rustc 24 - cargo 25 - cacert 26 - git 27 - ]; 28 - 29 - buildInputs = with prev; 30 - [ 31 - openssl 32 - zlib 33 - sqlite 34 - curl 35 - pcre2 36 - ] 37 - ++ lib.optionals stdenv.isDarwin [ 38 - libiconv 39 - darwin.apple_sdk.frameworks.Security 40 - ]; 41 - 42 - CARGO_HOME = "$NIX_BUILD_TOP/.cargo"; 43 - SSL_CERT_FILE = "${prev.cacert}/etc/ssl/certs/ca-bundle.crt"; 44 - GIT_CONFIG_NOSYSTEM = "1"; 45 - HOME = "$NIX_BUILD_TOP"; 46 - 47 - buildFeatures = ["vendored-openssl"]; 48 - 49 - doCheck = false; 50 - 51 - meta = with prev.lib; { 52 - description = "A Git-compatible DVCS that is both simple and powerful"; 53 - homepage = "https://github.com/martinvonz/jj"; 54 - license = licenses.asl20; 55 - maintainers = []; 56 - platforms = platforms.all; 57 - }; 58 - }; 59 - }