mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
50 lines
784 B
Nix
50 lines
784 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, qtmultimedia
|
|
, qtquickcontrols2
|
|
, qtwebsockets
|
|
, kconfig
|
|
, kcmutils
|
|
, kcrash
|
|
, kdeclarative
|
|
, kfilemetadata
|
|
, kinit
|
|
, kirigami2
|
|
, baloo
|
|
, libvlc
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "elisa";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs = [ libvlc ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
propagatedBuildInputs = [
|
|
baloo
|
|
kcmutils
|
|
kconfig
|
|
kcrash
|
|
kdeclarative
|
|
kfilemetadata
|
|
kinit
|
|
kirigami2
|
|
qtmultimedia
|
|
qtquickcontrols2
|
|
qtwebsockets
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://apps.kde.org/elisa/";
|
|
description = "A simple media player for KDE";
|
|
mainProgram = "elisa";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|