boreal: setup sddm theme module
This commit is contained in:
parent
ecb72c6900
commit
b1e1b0f1dd
7 changed files with 60 additions and 2 deletions
4
pkgs/default.nix
Normal file
4
pkgs/default.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ pkgs }:
|
||||
{
|
||||
sddm-sugar-candy = pkgs.callPackage ./sddm-sugar-candy.nix {};
|
||||
}
|
||||
18
pkgs/sddm-sugar-candy.nix
Normal file
18
pkgs/sddm-sugar-candy.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchFromGitLab }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sddm-sugar-candy";
|
||||
# latest master commit, no recent tags :(
|
||||
version = "2b72ef6c6f720fe0ffde5ea5c7c48152e02f6c4f";
|
||||
dontBuild = true;
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/sddm/themes
|
||||
cp -aR $src $out/share/sddm/themes/sugar-candy
|
||||
'';
|
||||
src = fetchFromGitLab {
|
||||
domain = "framagit.org";
|
||||
owner = "MarianArlt";
|
||||
repo = "sddm-sugar-candy";
|
||||
rev = version;
|
||||
sha256 = "sha256-XggFVsEXLYklrfy1ElkIp9fkTw4wvXbyVkaVCZq4ZLU=";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue