git-nomad: migrate to new apple-sdk structure, move to by-name

This commit is contained in:
Sarah Clark 2024-11-06 11:33:43 -08:00
parent 7e44cf1293
commit 900cd2c65a
2 changed files with 7 additions and 10 deletions

View File

@ -1,4 +1,9 @@
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin, git }:
{
lib,
rustPlatform,
fetchFromGitHub,
git,
}:
rustPlatform.buildRustPackage rec {
pname = "git-nomad";
@ -13,13 +18,7 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-7CZC29y9dLpyanolO+epKd0KwmRc1iGY+sPM9f/j5hk=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.SystemConfiguration
];
nativeCheckInputs = [
git
];
nativeCheckInputs = [ git ];
meta = with lib; {
description = "Synchronize work-in-progress git branches in a light weight fashion";

View File

@ -2249,8 +2249,6 @@ with pkgs;
git-machete = python3Packages.callPackage ../applications/version-management/git-machete { };
git-nomad = callPackage ../applications/version-management/git-nomad { };
git-octopus = callPackage ../applications/version-management/git-octopus { };
git-open = callPackage ../applications/version-management/git-open { };