mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
25 lines
467 B
Nix
25 lines
467 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
fetchurl,
|
|
pkg-config,
|
|
pulseaudio,
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "pulseaudio-qt";
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/pulseaudio-qt/pulseaudio-qt-${version}.tar.xz";
|
|
hash = "sha256-zY9RyHAAc9D9kNV4QIOs63PnK6mnBOYF4KZ5CUJqhSA=";
|
|
};
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [ pulseaudio ];
|
|
|
|
meta.license = with lib.licenses; [
|
|
lgpl21Only
|
|
lgpl3Only
|
|
];
|
|
}
|