From e612b7c968318bcd7f6ae5a4eaf930e21baa644d Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Wed, 7 Feb 2024 16:28:42 -0500 Subject: [PATCH] fix: alsa-ucm-conf on stable, update to 1.2.11 --- npins/sources.json | 12 +++++++----- packages/default.nix | 5 +++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/npins/sources.json b/npins/sources.json index 5c53b10..6af1544 100644 --- a/npins/sources.json +++ b/npins/sources.json @@ -1,16 +1,18 @@ { "pins": { "alsa-ucm-conf": { - "type": "Git", + "type": "GitRelease", "repository": { "type": "GitHub", "owner": "alsa-project", "repo": "alsa-ucm-conf" }, - "branch": "master", - "revision": "e87dde51d68950537f92af955ad0633437cc419a", - "url": "https://github.com/alsa-project/alsa-ucm-conf/archive/e87dde51d68950537f92af955ad0633437cc419a.tar.gz", - "hash": "14q6h5h4b6kyywmxf1jq726yrv1bl9q6i2pnfbl1hm7r66vgnaip" + "pre_releases": false, + "version_upper_bound": null, + "version": "v1.2.11", + "revision": "c40b8cc795c8fe4c83582857d5e317f18a4c065e", + "url": "https://api.github.com/repos/alsa-project/alsa-ucm-conf/tarball/v1.2.11", + "hash": "1jcn0x6bbg69p1ygxnh1zn33sd9lpbll4bnhvkzw1fjpmw7igjkz" }, "linux": { "type": "Git", diff --git a/packages/default.nix b/packages/default.nix index 837cb32..58be09b 100644 --- a/packages/default.nix +++ b/packages/default.nix @@ -37,9 +37,10 @@ in rec { "x13s/linux" = pkgs.callPackage linux_x13s_pkg { defconfig = "johan_defconfig"; }; "x13s/alsa-ucm-conf" = pkgs.alsa-ucm-conf.overrideAttrs ( - prev: rec { - version = "1.2.11-unstable-${builtins.substring 0 7 src.revision}"; + _: { + version = sources.alsa-ucm-conf.version; src = sources.alsa-ucm-conf; + patches = [ ]; } );