depot/third_party/nixpkgs/pkgs/by-name/le/leaf/package.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

33 lines
774 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "leaf";
version = "0.1.0";
src = fetchFromGitHub {
owner = "IogaMaster";
repo = "leaf";
rev = "v${version}";
hash = "sha256-FbvXH0DXA+XvZuWZ7iJi4PqgoPv5qy5SWdXFlfBSmlM=";
};
cargoHash = "sha256-CsO3JzL5IqxGpj9EbbuDmmarzYpLFmmekX0W9mAQSzI=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.SystemConfiguration
];
meta = with lib; {
description = "A simple system fetch written in rust";
homepage = "https://github.com/IogaMaster/leaf";
license = licenses.mit;
maintainers = with maintainers; [ iogamaster ];
mainProgram = "leaf";
};
}