some versions

This commit is contained in:
mjallen18
2026-01-15 09:29:16 -06:00
parent d47b092a8c
commit 8e7a0343c2
15 changed files with 289 additions and 492 deletions

View File

@@ -15,7 +15,10 @@
fontconfig,
freetype,
}:
let
inherit (lib.trivial) importJSON;
versions = importJSON ./versions.json;
in
rustPlatform.buildRustPackage rec {
pname = "librepods";
version = "0.1.0";
@@ -23,8 +26,8 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "kavishdevar";
repo = "librepods";
rev = "c852b726deb5344ea3637332722a7c93f3858d60";
hash = "sha256-RoOkINI+ahepAbgwdkcl1iI9XGI/gYXWiH0J9Eb90pg=";
rev = versions.rev;
hash = versions.hash;
};
sourceRoot = "${src.name}/linux-rust";