Unverified Commit 6e7e9da8 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

wxedid: init at 0.0.33 (#345711)

parents 5a10d401 3fc24ecf
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -16818,6 +16818,11 @@
    githubId = 14259816;
    name = "Abin Simon";
  };
  meanwhile131 = {
    name = "meanwhile131";
    github = "meanwhile131";
    githubId = 51206659;
  };
  meatcar = {
    email = "nixpkgs@denys.me";
    github = "meatcar";
+34 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchzip,
  wrapGAppsHook3,
  wxwidgets_3_3,
}:
stdenv.mkDerivation rec {
  pname = "wxedid";
  version = "0.0.33";

  src = fetchzip {
    url = "https://downloads.sourceforge.net/project/wxedid/wxedid-${version}.tar.gz";
    hash = "sha256-ShO2e5rQCVBdgyg4iiFzFEywl2m9A+jILMGI+MT8qgo=";
  };
  nativeBuildInputs = [
    wrapGAppsHook3
  ];
  buildInputs = [
    wxwidgets_3_3
  ];
  prePatch = ''
    patchShebangs src/rcode/rcd_autogen
  '';

  meta = with lib; {
    description = "wxWidgets-based EDID (Extended Display Identification Data) editor";
    homepage = "https://sourceforge.net/projects/wxedid";
    license = licenses.gpl3Only;
    mainProgram = "wxedid";
    maintainers = [ maintainers.meanwhile131 ];
    platforms = lib.platforms.linux;
  };
}