pub-solar-os/pkgs/applications/display-managers/sddm/themes/chili/default.nix
Timothy DeHerrera 14edf3fd19
fix various linting errors throughout the repo
* replace `rec` attrs with let bindings
* remove unused args
2020-07-30 22:13:41 -06:00

28 lines
650 B
Nix

{ stdenv, fetchFromGitHub, ... }:
let version = "0.1.5";
in stdenv.mkDerivation {
pname = "sddm-chili";
inherit version;
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;
};
}