nixos-configs/scopedPackages/dracula/sioyek/default.nix

27 lines
419 B
Nix
Raw Normal View History

{
2025-02-18 15:19:08 -05:00
# nix build inputs
lib,
stdenv,
2024-06-13 22:27:54 -04:00
mkVersion,
sioyek-theme-src,
...
}:
stdenv.mkDerivation {
pname = "dracula-sioyek";
2024-06-13 22:27:54 -04:00
version = mkVersion sioyek-theme-src;
src = sioyek-theme-src;
installPhase = ''
cat ./dracula.config > $out
'';
2025-02-18 15:19:08 -05:00
meta = {
license = lib.licenses.mit;
homepage = "https://github.com/dracula/sioyek";
description = ''
Dark theme for Sioyek.
'';
};
}