depot/pkgs/kde/misc/pulseaudio-qt/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
467 B
Nix

{
lib,
mkKdeDerivation,
fetchurl,
pkg-config,
pulseaudio,
}:
mkKdeDerivation rec {
pname = "pulseaudio-qt";
version = "1.6.1";
src = fetchurl {
url = "mirror://kde/stable/pulseaudio-qt/pulseaudio-qt-${version}.tar.xz";
hash = "sha256-8hvzDy/z5nDSBG+WYGncI/XmU/9Wus24kgwTdCZMvB4=";
};
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [ pulseaudio ];
meta.license = with lib.licenses; [
lgpl21Only
lgpl3Only
];
}