33 lines
774 B
Nix
33 lines
774 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "leaf";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IogaMaster";
|
|
repo = "leaf";
|
|
rev = "v${version}";
|
|
hash = "sha256-y0NO9YcOO7T7Cqc+/WeactwBAkeUqdCca87afOlO1Bk=";
|
|
};
|
|
|
|
cargoHash = "sha256-2I0XusAI98WLzGcwEorPmtcK3VkpwpkIn0JKwn3gT1c=";
|
|
|
|
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";
|
|
};
|
|
}
|