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

@@ -9,7 +9,10 @@
libpulseaudio,
fetchFromGitHub,
}:
let
inherit (lib.trivial) importJSON;
versions = importJSON ./versions.json;
in
stdenv.mkDerivation {
pname = "librepods";
version = "unstable";
@@ -17,8 +20,8 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "kavishdevar";
repo = "librepods";
rev = "287163e116d092485d561ad571dae03a2f43cf2f";
hash = "sha256-PD5U87RVBRCLWwnN54x3AEey6wqoOeZlBvzyIESH1v8=";
rev = versions.rev;
hash = versions.hash;
};
sourceRoot = "source/linux";

View File

@@ -0,0 +1,6 @@
{
"repo": "https://github.com/kavishdevar/librepods",
"rev": "287163e116d092485d561ad571dae03a2f43cf2f",
"hash": "sha256-PD5U87RVBRCLWwnN54x3AEey6wqoOeZlBvzyIESH1v8="
}