Unverified Commit 1ed4fc5d authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #287243 from GaetanLepage/elegant-sddm

elegant-sddm: init at unstable-2024-02-08
parents d71fa884 bc010914
Loading
Loading
Loading
Loading
+63 −0
Original line number Diff line number Diff line
{ lib
, formats
, stdenvNoCC
, fetchFromGitHub
, qtgraphicaleffects
  /* An example of how you can override the background with a NixOS wallpaper
  *
  *  environment.systemPackages = [
  *    (pkgs.elegant-sddm.override {
  *      themeConfig.General = {
           background = "${pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom.gnomeFilePath}";
  *      };
  *    })
  *  ];
  */
, themeConfig ? null
}:

let
  user-cfg = (formats.ini { }).generate "theme.conf.user" themeConfig;
in

stdenvNoCC.mkDerivation {
  pname = "elegant-sddm";
  version = "unstable-2024-02-08";

  src = fetchFromGitHub {
    owner = "surajmandalcell";
    repo = "Elegant-sddm";
    rev = "3102e880f46a1b72c929d13cd0a3fb64f973952a";
    hash = "sha256-yn0fTYsdZZSOcaYlPCn8BUIWeFIKcTI1oioTWqjYunQ=";
  };

  propagatedBuildInputs = [
    qtgraphicaleffects
  ];

  dontWrapQtApps = true;

  installPhase = ''
    runHook preInstall

    mkdir -p "$out/share/sddm/themes"
    cp -r Elegant/ "$out/share/sddm/themes/Elegant"
  '' + (lib.optionalString (lib.isAttrs themeConfig) ''
    ln -sf ${user-cfg} $out/share/sddm/themes/Elegant/theme.conf.user
  '') + ''
    runHook postInstall
  '';

  postFixup = ''
    mkdir -p $out/nix-support

    echo ${qtgraphicaleffects} >> $out/nix-support/propagated-user-env-packages
  '';

  meta = with lib; {
    description = "Sleek and stylish SDDM theme crafted in QML";
    homepage = "https://github.com/surajmandalcell/Elegant-sddm";
    license = licenses.gpl3;
    maintainers = with maintainers; [ GaetanLepage ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -27660,6 +27660,8 @@ with pkgs;
  ebtables = callPackage ../os-specific/linux/ebtables { };
  elegant-sddm = libsForQt5.callPackage ../data/themes/elegant-sddm { };
  error-inject = callPackages ../os-specific/linux/error-inject { };
  extrace = callPackage ../os-specific/linux/extrace { };