sddm-sugar-candy: use custom config
This commit is contained in:
parent
b1e1b0f1dd
commit
4b5c301e46
3 changed files with 56 additions and 4 deletions
19
pkgs/sddm-sugar-candy/default.nix
Normal file
19
pkgs/sddm-sugar-candy/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ 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 . $out/share/sddm/themes/sugar-candy
|
||||
'';
|
||||
patches = [ ./custom-conf.patch ];
|
||||
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