1 { lib, stdenv, cmake, extra-cmake-modules, plasma-framework, kwindowsystem, plasma-pa, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4 pname = "plasma-applet-volumewin7mixer";
7 src = fetchFromGitHub {
9 repo = "plasma-applet-volumewin7mixer";
11 sha256 = "sha256-VMOUNtAURTHDuJBOGz2N0+3VzxBmVNC1O8dVuyUZAa4=";
14 # Adds the CMakeLists.txt not provided by upstream
15 patches = [ ./cmake.patch ];
16 postPatch = "rm build";
17 nativeBuildInputs = [ cmake extra-cmake-modules ];
18 buildInputs = [ plasma-framework kwindowsystem plasma-pa ];
20 dontWrapQtApps = true;
23 description = "A fork of the default volume plasmoid with a Windows 7 theme (vertical sliders)";
24 homepage = "https://github.com/Zren/plasma-applet-volumewin7mixer";
25 license = licenses.gpl2Plus;
26 platforms = platforms.linux;
27 maintainers = with maintainers; [ mdevlamynck ];