Remove old vital-synth derivation

This commit is contained in:
Filippo Berto 2023-08-15 12:16:56 +02:00
parent c645f75aa6
commit 247ef11b0e
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
2 changed files with 0 additions and 29 deletions

View file

@ -7,7 +7,6 @@ let
sddm-theme-clairvoyance = pkgs.callPackage ./sddm-theme-clairvoyance { };
sddm-sugar-dark = pkgs.callPackage ./sddm-sugar-dark { };
update-background = pkgs.callPackage ./update-background { };
vital-synth = pkgs.callPackage ./vital-synth { };
keyboard-switch = pkgs.callPackage ./keyboard-switch { };
};
in

View file

@ -1,28 +0,0 @@
{ 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;
};
}