lon: init at 0.2.0

Adds a package for lon, a minimal Nix dependency / lockfile manager.
This commit is contained in:
Maximilian Bosch
2025-03-20 15:21:19 +00:00
parent 4edfeafac4
commit 32fc03cbf1
+30
View File
@@ -0,0 +1,30 @@
{
rustPlatform,
lib,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "lon";
version = "0.2.0";
src = fetchFromGitHub {
owner = "nikstur";
repo = "lon";
tag = version;
hash = "sha256-VGvK0ahBl440NMs03WqmP7T4a1DP13yfX47YI84rlGU=";
};
sourceRoot = "source/rust/lon";
useFetchCargoVendor = true;
cargoHash = "sha256-YzQ6A1dH2D56/3inAmsE6G5rCnpWhDawxk6+FMWfhkc=";
meta = {
description = "Lock & update Nix dependencies";
homepage = "https://github.com/nikstur/lon";
maintainers = with lib.maintainers; [ ma27 ];
license = lib.licenses.mit;
mainProgram = "lon";
};
}