flake-edit: 0.1.0 -> 0.0.2 (#376948)

This commit is contained in:
jopejoe1
2025-01-26 20:16:45 +00:00
committed by GitHub
+7 -6
View File
@@ -6,21 +6,22 @@
openssl,
stdenv,
installShellFiles,
nix-update-script,
darwin,
}:
rustPlatform.buildRustPackage rec {
pname = "flake-edit";
version = "0.1.0";
version = "0.0.2";
src = fetchFromGitHub {
owner = "a-kenji";
repo = "flake-edit";
rev = "v${version}";
hash = "sha256-dNTvAYBVZLeDlC1bsaonwojE7+1CD16/sCxtQVvT9WE=";
hash = "sha256-7n8WANm9AijZYI5nlnevLI+aZtV55teroeQIEld7tkE=";
};
cargoHash = "sha256-ipLjbfnNqrUUD40awRnE8URX5pHhG4SwUM9JedoBM8Y=";
cargoHash = "sha256-LyASAwyiBiPZkrA1R0zgQbNbSeOmMDEydLk2YiGq2fM=";
nativeBuildInputs = [
installShellFiles
@@ -28,9 +29,7 @@ rustPlatform.buildRustPackage rec {
];
buildInputs =
[
openssl
]
[ openssl ]
++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
@@ -46,6 +45,8 @@ rustPlatform.buildRustPackage rec {
installShellCompletion --zsh --name _flake-edit target/assets/_flake-edit
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Edit your flake inputs with ease";
homepage = "https://github.com/a-kenji/flake-edit";