mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
Merge pull request #324012 from DaniD3v/sddm-astronaut
This commit is contained in:
commit
47d56528ac
38
pkgs/data/themes/sddm-astronaut/default.nix
Normal file
38
pkgs/data/themes/sddm-astronaut/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ pkgs, lib, stdenvNoCC, themeConfig ? null }:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "sddm-astronaut";
|
||||
version = "1.0";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "Keyitdev";
|
||||
repo = "sddm-astronaut-theme";
|
||||
rev = "48ea0a792711ac0c58cc74f7a03e2e7ba3dc2ac0";
|
||||
hash = "sha256-kXovz813BS+Mtbk6+nNNdnluwp/7V2e3KJLuIfiWRD0=";
|
||||
};
|
||||
|
||||
dontWrapQtApps = true;
|
||||
propagatedBuildInputs = with pkgs.kdePackages; [ qt5compat qtsvg ];
|
||||
|
||||
installPhase =
|
||||
let
|
||||
iniFormat = pkgs.formats.ini { };
|
||||
configFile = iniFormat.generate "" { General = themeConfig; };
|
||||
|
||||
basePath = "$out/share/sddm/themes/sddm-astronaut-theme";
|
||||
in
|
||||
''
|
||||
mkdir -p ${basePath}
|
||||
cp -r $src/* ${basePath}
|
||||
'' + lib.optionalString (themeConfig != null) ''
|
||||
ln -sf ${configFile} ${basePath}/theme.conf.user
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Modern looking qt6 sddm theme";
|
||||
homepage = "https://github.com/${src.owner}/${pname}";
|
||||
license = lib.licenses.gpl3;
|
||||
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ danid3v ];
|
||||
};
|
||||
}
|
@ -27579,6 +27579,8 @@ with pkgs;
|
||||
|
||||
schedtool = callPackage ../os-specific/linux/schedtool { };
|
||||
|
||||
sddm-astronaut = qt6Packages.callPackage ../data/themes/sddm-astronaut { };
|
||||
|
||||
sddm-chili-theme = libsForQt5.callPackage ../data/themes/chili-sddm { };
|
||||
|
||||
sddm-sugar-dark = libsForQt5.callPackage ../data/themes/sddm-sugar-dark { };
|
||||
|
Loading…
Reference in New Issue
Block a user