989b34de7c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/elisa/versions
36 lines
897 B
Nix
36 lines
897 B
Nix
{ mkDerivation, fetchFromGitHub, lib
|
|
, extra-cmake-modules, kdoctools, wrapGAppsHook
|
|
, qtmultimedia, qtquickcontrols2, qtwebsockets
|
|
, kconfig, kcmutils, kcrash, kdeclarative, kfilemetadata, kinit
|
|
, baloo
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
name = "elisa-${version}";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KDE";
|
|
repo = "elisa";
|
|
rev = "v${version}";
|
|
sha256 = "0bpkr5rp9nfa2wzm6w3xkhsfgf5dbgxbmhckjh9wkxal3mncpkg4";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
|
|
propagatedBuildInputs = [
|
|
qtmultimedia qtquickcontrols2 qtwebsockets
|
|
kconfig kcmutils kcrash kdeclarative kfilemetadata kinit
|
|
baloo
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Elisa Music Player";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (kconfig.meta) platforms;
|
|
};
|
|
}
|