commit
62fbbdc0d0
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, rustPlatform, fetchFromGitHub, SystemConfiguration }:
|
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin, git }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "git-nomad";
|
pname = "git-nomad";
|
||||||
@ -11,13 +11,20 @@ rustPlatform.buildRustPackage rec {
|
|||||||
sha256 = "sha256-1PXAdXafkPOIVzaWjW/RlWHwYhMqPoj0Hj5JmOMUj8A=";
|
sha256 = "sha256-1PXAdXafkPOIVzaWjW/RlWHwYhMqPoj0Hj5JmOMUj8A=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ SystemConfiguration ];
|
|
||||||
|
|
||||||
cargoHash = "sha256-ULcdJRla1JwI0y6ngW9xQXjNw2wO48HuAczsNIsJJK0=";
|
cargoHash = "sha256-ULcdJRla1JwI0y6ngW9xQXjNw2wO48HuAczsNIsJJK0=";
|
||||||
|
|
||||||
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
git
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Synchronize work-in-progress git branches in a light weight fashion";
|
description = "Synchronize work-in-progress git branches in a light weight fashion";
|
||||||
homepage = "https://github.com/rraval/git-nomad";
|
homepage = "https://github.com/rraval/git-nomad";
|
||||||
|
changelog = "https://github.com/rraval/git-nomad/blob/v${version}/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ rraval ];
|
maintainers = with maintainers; [ rraval ];
|
||||||
};
|
};
|
||||||
|
@ -1769,9 +1769,7 @@ with pkgs;
|
|||||||
|
|
||||||
git-machete = python3Packages.callPackage ../applications/version-management/git-machete { };
|
git-machete = python3Packages.callPackage ../applications/version-management/git-machete { };
|
||||||
|
|
||||||
git-nomad = callPackage ../applications/version-management/git-nomad {
|
git-nomad = callPackage ../applications/version-management/git-nomad { };
|
||||||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
|
|
||||||
};
|
|
||||||
|
|
||||||
git-octopus = callPackage ../applications/version-management/git-octopus { };
|
git-octopus = callPackage ../applications/version-management/git-octopus { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user