{ lib, stdenv, fetchFromGitHub, fira-mono }: stdenv.mkDerivation rec { pname = "vital"; version = "20190530"; src = fetchFromGitHub { owner = "mtytel"; repo = pname; rev = "636ca0e"; sha256 = "sha25ww6-AcVQpG62PkMtAudqyu/iwZ4N6a2bCdfumCmdqE1E548="; }; buildInputs = [ fira-mono ]; installPhase = '' mkdir -p $out/usr/share/sddm/themes/ cp -a . $out/usr/share/sddm/themes/clairvoyance ''; meta = with lib; { description = "Clairvoyance theme for SDDM"; homepage = "https://github.com/eayus/sddm-theme-clairvoyance"; license = licenses.gpl3Plus; maintainers = [ maintainers.bertof ]; platforms = platforms.all; }; }