this repo has no description
1
fork

Configure Feed

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

fix: git-branchless do not need custom derivation but prr does

+9 -5
+4 -2
modules/git.nix
··· 22 22 23 23 home.packages = [ 24 24 pkgs.git-absorb 25 - (inputs.self.lib.dontCheck inputs.git-branchless.packages.${pkgs.stdenv.hostPlatform.system}.git-branchless) 25 + # (inputs.self.lib.dontCheck inputs.git-branchless.packages.${pkgs.stdenv.hostPlatform.system}.git-branchless) 26 + pkgs.git-branchless 26 27 pkgs.git-gone 27 28 pkgs.git-cliff 28 29 pkgs.git-revise 29 30 pkgs.gitAndTools.git-imerge 30 - pkgs.prr 31 + # pkgs.prr 32 + inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.prr 31 33 pkgs.hut 32 34 pkgs.patch2pr 33 35 pkgs.revup
+5 -3
pkgs/prr.nix
··· 2 2 stdenv, 3 3 rustPlatform, 4 4 openssl, 5 + zlib, 5 6 darwin, 6 7 fetchFromGitHub, 7 8 lib, ··· 9 10 }: 10 11 rustPlatform.buildRustPackage rec { 11 12 pname = "prr"; 12 - version = "0.16.0"; 13 + version = "0.17.0"; 13 14 14 15 nativeBuildInputs = [ 15 16 pkg-config ··· 18 19 buildInputs = 19 20 [ 20 21 openssl 22 + zlib 21 23 ] 22 24 ++ lib.optional stdenv.isDarwin (with darwin.apple_sdk; [ 23 25 frameworks.Security ··· 28 30 owner = "danobi"; 29 31 repo = pname; 30 32 rev = "v${version}"; 31 - hash = lib.fakeHash; 33 + hash = "sha256-siQZ3rDKv2lnn1bmisRsexWwfvmMhK+z4GZGPsrfPgc="; 32 34 }; 33 35 34 - cargoHash = lib.fakeHash; 36 + cargoHash = "sha256-vCZjgmBYO+I6MZLCOMp50bWEeHwLbZsxSz5gRmBykvI="; 35 37 36 38 meta = with lib; { 37 39 description = "Mailing list style code reviews for GitHub";