Skip to content

Commit

Permalink
alsa-ucm-conf: switch to finalAttrs pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jan 5, 2025
1 parent b886c71 commit 9613a91
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/by-name/al/alsa-ucm-conf/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
coreutils,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "alsa-ucm-conf";
version = "1.2.12";

src = fetchurl {
url = "mirror://alsa/lib/alsa-ucm-conf-${version}.tar.bz2";
url = "mirror://alsa/lib/alsa-ucm-conf-${finalAttrs.version}.tar.bz2";
hash = "sha256-Fo58BUm3v4mRCS+iv7kDYx33edxMQ+6PQnf8t3LYwDU=";
};

Expand All @@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
url = "https://www.alsa-project.org/files/pub/lib/";
};

meta = with lib; {
meta = {
homepage = "https://www.alsa-project.org/";
description = "ALSA Use Case Manager configuration";

Expand All @@ -43,8 +43,8 @@ stdenv.mkDerivation rec {
MIDI functionality to the Linux-based operating system.
'';

license = licenses.bsd3;
maintainers = [ maintainers.roastiek ];
platforms = platforms.linux;
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.roastiek ];
platforms = lib.platforms.linux;
};
}
})

0 comments on commit 9613a91

Please sign in to comment.