Unverified Commit 517bb180 authored by dish's avatar dish Committed by GitHub
Browse files

maplestory-cursor: init at 1.0.0 (#424590)

parents 778513e1 4bc4426e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14573,6 +14573,12 @@
    githubId = 307589;
    name = "Nathaniel Baxter";
  };
  liam-w = {
    email = "liam.weitzel2@gmail.com";
    github = "Liam-Weitzel";
    githubId = 22010764;
    name = "Liam Weitzel";
  };
  liamdiprose = {
    email = "liam@liamdiprose.com";
    github = "liamdiprose";
+51 −0
Original line number Diff line number Diff line
{
  fetchFromGitHub,
  lib,
  stdenvNoCC,

  # build deps
  clickgen,
  python3Packages,
}:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "maplestory-cursor";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "Liam-Weitzel";
    repo = "maplestory-cursor";
    tag = "v${finalAttrs.version}";
    hash = "sha256-doUnd0XyA7Nk078eDEIrRltj3zBODHpGn8Rqx2rl5/o=";
  };

  nativeBuildInputs = [
    clickgen
    python3Packages.attrs
  ];

  buildPhase = ''
    runHook preBuild

    ctgen build.toml -p x11 -o $out

    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/icons
    mv $out/Maple $out/share/icons

    runHook postInstall
  '';

  meta = {
    description = "Maplestory cursor theme for x11 & wayland";
    homepage = "https://github.com/Liam-Weitzel/maplestory-cursor";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ liam-w ];
    platforms = lib.platforms.linux;
  };
})