bulk versions.json

This commit is contained in:
mjallen18
2026-01-21 12:53:13 -06:00
parent 7cc4e8c99e
commit 2b9908e760
52 changed files with 1033 additions and 335 deletions

View File

@@ -8,21 +8,20 @@
python3,
libpulseaudio,
fetchFromGitHub,
pkgs,
}:
let
inherit (lib.trivial) importJSON;
versions = importJSON ./versions.json;
versionSpec = importJSON ./version.json;
versioning = import ../../lib/versioning.nix { inherit lib pkgs; };
selected = versioning.selectVariant versionSpec null null;
sources = versioning.mkAllSources selected;
in
stdenv.mkDerivation {
pname = "librepods";
version = "unstable";
src = fetchFromGitHub {
owner = "kavishdevar";
repo = "librepods";
rev = versions.rev;
hash = versions.hash;
};
src = sources.librepods;
sourceRoot = "source/linux";

View File

@@ -0,0 +1,11 @@
{
"schemaVersion": 1,
"sources": {
"librepods": {
"fetcher": "git",
"url": "https://github.com/kavishdevar/librepods",
"rev": "287163e116d092485d561ad571dae03a2f43cf2f",
"hash": "sha256-PD5U87RVBRCLWwnN54x3AEey6wqoOeZlBvzyIESH1v8="
}
}
}

View File

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