a194c0ed03
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. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/x9jdlmln6ywpx5c2qh7vmfdn93djnxk3-elisa-0.2.0/bin/elisa had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/x9jdlmln6ywpx5c2qh7vmfdn93djnxk3-elisa-0.2.0/bin/.elisa-wrapped had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 0.2.0 with grep in /nix/store/x9jdlmln6ywpx5c2qh7vmfdn93djnxk3-elisa-0.2.0 - directory tree listing: https://gist.github.com/6a824e1b1cbc4a270bb07962f2026bfb - du listing: https://gist.github.com/ac472eaf8c7eb82ee6d9c2283ab33ca9
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.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KDE";
|
|
repo = "elisa";
|
|
rev = "v${version}";
|
|
sha256 = "0lpzn55b8gf3byzwv9909x40p98aqlh35vidkrwnnbwgygsa85bw";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|