hydra and package fixes

This commit is contained in:
Rouven Seifert 2023-05-02 00:04:26 +02:00
parent d41c30a414
commit f7931d72a8
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 13 additions and 9 deletions

View file

@ -1,8 +1,8 @@
{ lib, stdenv, fetchFromGitHub, gtk-engine-murrine }:
{ lib, stdenv, fetchFromGitHub}:
let
themeName = "Dracula";
version = "1.0";
version = "2021-07-21";
in
stdenv.mkDerivation {
pname = "dracula-icon-theme";
@ -11,7 +11,7 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "m4thewz";
repo = "dracula-icons";
rev = "main";
rev = "2d3c83caa8664e93d956cfa67a0f21418b5cdad8";
sha256 = "GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ=";
};
@ -26,6 +26,7 @@ stdenv.mkDerivation {
description = "Dracula Icon theme";
homepage = "https://github.com/m4thewz/dracula-icons";
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ therealr5 ];
};
}