| 123456789101112131415161718192021222324 |
- { lib, fetchFromGitHub, stdenvNoCC }:
- stdenvNoCC.mkDerivation {
- pname = "gogs-themes";
- version = "unstable-2022-01-01";
- src = fetchFromGitHub {
- owner = "kristuff";
- repo = "gogs-themes";
- rev = "main";
- hash = "sha256-GWcKFOTBYDOSRPImtODuTrppJQlYZyIBGN/7rVgzZ2Q=";
- };
- installPhase = ''
- mkdir -p $out/dist
- cp -r dist/*.css $out/dist/
- '';
- meta = {
- description = "Dark & responsive themes for Gogs";
- homepage = "https://github.com/kristuff/gogs-themes";
- license = lib.licenses.mit;
- platforms = lib.platforms.all;
- };
- }
|