Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / plasma-applet-volumewin7mixer / default.nix
blobe8bc572e284f2113935fbb39c7c6618fb783efab
1 { lib, stdenv, cmake, extra-cmake-modules, plasma-framework, kwindowsystem, plasma-pa, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "plasma-applet-volumewin7mixer";
5   version = "26";
7   src = fetchFromGitHub {
8     owner = "Zren";
9     repo = "plasma-applet-volumewin7mixer";
10     rev = "v${version}";
11     sha256 = "sha256-VMOUNtAURTHDuJBOGz2N0+3VzxBmVNC1O8dVuyUZAa4=";
12   };
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;
22   meta = with lib; {
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 ];
28   };