this repo has no description
0
fork

Configure Feed

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

jujutsu overlay for latest git

squash

+71 -11
-1
darwin/darwin.nix
··· 70 70 "zola" 71 71 "zsh-autosuggestions" 72 72 "fd" 73 - "jj" 74 73 "git-cliff" 75 74 ]; 76 75 casks = [
+9 -9
darwin/flake.lock
··· 68 68 ] 69 69 }, 70 70 "locked": { 71 - "lastModified": 1736421950, 72 - "narHash": "sha256-RyrX0WFXxFrYvzHNLTIyuk3NcNl3UBykuYru/P0zW5E=", 71 + "lastModified": 1736785676, 72 + "narHash": "sha256-TY0jUwR3EW0fnS0X5wXMAVy6h4Z7Y6a3m+Yq++C9AyE=", 73 73 "owner": "nix-community", 74 74 "repo": "home-manager", 75 - "rev": "d4aebb947a301b8da8654a804979a738c5c5da50", 75 + "rev": "fc52a210b60f2f52c74eac41a8647c1573d2071d", 76 76 "type": "github" 77 77 }, 78 78 "original": { ··· 88 88 ] 89 89 }, 90 90 "locked": { 91 - "lastModified": 1736370755, 92 - "narHash": "sha256-iWcjToBpx4PUd74uqvIGAfqqVfyrvRLRauC/SxEKIF0=", 91 + "lastModified": 1736631212, 92 + "narHash": "sha256-mG9lRZBcPiAGiVJ9B97BJoIGQcSBWIVlBiN30QYCtG0=", 93 93 "owner": "LnL7", 94 94 "repo": "nix-darwin", 95 - "rev": "57733bd1dc81900e13438e5b4439239f1b29db0e", 95 + "rev": "6ace2f2d12bdf74235d5cbf9fbd34a71c9716685", 96 96 "type": "github" 97 97 }, 98 98 "original": { ··· 103 103 }, 104 104 "nixpkgs": { 105 105 "locked": { 106 - "lastModified": 1735954111, 107 - "narHash": "sha256-yPzRuUXx99iu9QMF9GKxxqqC7kpKdFlQi7PA9N85wxQ=", 106 + "lastModified": 1736644795, 107 + "narHash": "sha256-6Fnro1glZHrHUPnkcpxw7tkpVJWQZiJfp/N1zhl1MhY=", 108 108 "owner": "NixOS", 109 109 "repo": "nixpkgs", 110 - "rev": "a4c40a8a970c147cea7e98e86b2ff2ffb184aedd", 110 + "rev": "c4533bdb2e7a4eb14096414e8dee7762a968cae3", 111 111 "type": "github" 112 112 }, 113 113 "original": {
+2
darwin/flake.nix
··· 41 41 pkgs.difftastic 42 42 pkgs.rustup 43 43 pkgs.xcodes 44 + pkgs.jj 44 45 ]; 45 46 46 47 # Auto upgrade nix package and the daemon service. ··· 93 94 { 94 95 nixpkgs.overlays = [ 95 96 (import ../overlays/fish.nix) 97 + (import ../overlays/jj.nix) 96 98 ]; 97 99 } 98 100 ];
+1 -1
overlays/fish.nix
··· 5 5 src = prev.fetchFromGitHub { 6 6 owner = "fish-shell"; 7 7 repo = "fish-shell"; 8 - rev = "8557c3c48c132a31dffbab6a90326a80f9cae8ec"; 8 + rev = "master"; 9 9 hash = "sha256-O5xZHXNrJMpjTA2mrTqzMtU/55UArwoc2adc0R6pVl0="; 10 10 }; 11 11 nativeBuildInputs =
+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 + }