summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorKevin Kandlbinder <kevin@kevink.dev>2022-02-16 12:54:11 +0100
committerKevin Kandlbinder <kevin@kevink.dev>2022-02-16 12:54:11 +0100
commit50e6588e384bac469e0eec7965238ab362fda32a (patch)
tree97cc8367bab78eec473a6722f18a2aaa23618b24 /pkgs
parentce4df6fac5207730e66a704188998b3d4cc8d5d5 (diff)
downloadnixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.tar
nixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.tar.gz
nixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.tar.bz2
nixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.tar.lz
nixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.tar.xz
nixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.tar.zst
nixpkgs-50e6588e384bac469e0eec7965238ab362fda32a.zip
plasma-theme-switcher: init at 0.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/plasma-theme-switcher/default.nix42
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/applications/misc/plasma-theme-switcher/default.nix b/pkgs/applications/misc/plasma-theme-switcher/default.nix
new file mode 100644
index 00000000000..fb8d407ef12
--- /dev/null
+++ b/pkgs/applications/misc/plasma-theme-switcher/default.nix
@@ -0,0 +1,42 @@
+{
+  stdenv, lib, cmake, extra-cmake-modules, fetchFromGitHub, qtbase, kdeFrameworks
+}:
+
+stdenv.mkDerivation rec {
+  pname = "plasma-theme-switcher";
+  version = "0.1";
+  dontWrapQtApps = true;
+
+  src = fetchFromGitHub {
+    owner = "maldoinc";
+    repo = "plasma-theme-switcher";
+    rev = "v${version}";
+    sha256 = "sdcJ6K5QmglJEDIEl4sd8x7DuCPCqMHRxdYbcToM46Q=";
+  };
+
+  buildInputs = [
+    qtbase
+    kdeFrameworks.plasma-framework
+  ];
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  installPhase = ''
+    runHook preInstall
+
+    mkdir -p $out/bin
+    cp plasma-theme $out/bin
+
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    homepage = "https://github.com/maldoinc/plasma-theme-switcher/";
+    description = "A KDE Plasma theme switcher";
+    license = with licenses; [ gpl2Only ];
+    maintainers = with maintainers; [ kevink ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 227d1d38654..4cbcb4bb345 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -31654,6 +31654,8 @@ with pkgs;
 
   plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { };
 
+  plasma-theme-switcher = libsForQt5.callPackage ../applications/misc/plasma-theme-switcher {};
+
   plasma-pass = libsForQt5.callPackage ../tools/security/plasma-pass { };
 
   inherit (callPackages ../applications/misc/redshift {