fix: alsa-ucm-conf on stable, update to 1.2.11

This commit is contained in:
Adam Stephens 2024-02-07 16:28:42 -05:00
parent 08af694944
commit e612b7c968
No known key found for this signature in database
2 changed files with 10 additions and 7 deletions

View file

@ -1,16 +1,18 @@
{ {
"pins": { "pins": {
"alsa-ucm-conf": { "alsa-ucm-conf": {
"type": "Git", "type": "GitRelease",
"repository": { "repository": {
"type": "GitHub", "type": "GitHub",
"owner": "alsa-project", "owner": "alsa-project",
"repo": "alsa-ucm-conf" "repo": "alsa-ucm-conf"
}, },
"branch": "master", "pre_releases": false,
"revision": "e87dde51d68950537f92af955ad0633437cc419a", "version_upper_bound": null,
"url": "https://github.com/alsa-project/alsa-ucm-conf/archive/e87dde51d68950537f92af955ad0633437cc419a.tar.gz", "version": "v1.2.11",
"hash": "14q6h5h4b6kyywmxf1jq726yrv1bl9q6i2pnfbl1hm7r66vgnaip" "revision": "c40b8cc795c8fe4c83582857d5e317f18a4c065e",
"url": "https://api.github.com/repos/alsa-project/alsa-ucm-conf/tarball/v1.2.11",
"hash": "1jcn0x6bbg69p1ygxnh1zn33sd9lpbll4bnhvkzw1fjpmw7igjkz"
}, },
"linux": { "linux": {
"type": "Git", "type": "Git",

View file

@ -37,9 +37,10 @@ in
rec { rec {
"x13s/linux" = pkgs.callPackage linux_x13s_pkg { defconfig = "johan_defconfig"; }; "x13s/linux" = pkgs.callPackage linux_x13s_pkg { defconfig = "johan_defconfig"; };
"x13s/alsa-ucm-conf" = pkgs.alsa-ucm-conf.overrideAttrs ( "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; src = sources.alsa-ucm-conf;
patches = [ ];
} }
); );