forked from pub-solar/os
27 lines
630 B
Nix
27 lines
630 B
Nix
{ stdenv, fetchFromGitHub, ... }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "sddm-chili";
|
|
version = "0.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MarianArlt";
|
|
repo = "sddm-chili";
|
|
rev = "${version}";
|
|
hash = "sha256-wxWsdRGC59YzDcSopDRzxg8TfjjmA3LHrdWjepTuzgw=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/sddm/themes/chili
|
|
|
|
cp -r * $out/share/sddm/themes/chili
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The hottest theme around for SDDM";
|
|
homepage = "https://github.com/MarianArlt/sddm-chili";
|
|
maintainers = [ maintainers.nrdxp ];
|
|
license = licenses.gpl3;
|
|
inherit version;
|
|
};
|
|
}
|