gendef: init at 11.0.1

This commit is contained in:
Hugh O'Brien 2023-06-13 23:51:53 -04:00
parent 907f5f46fa
commit 1455ac5377
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ fetchgit, lib, stdenv }:
stdenv.mkDerivation (finalAttrs: {
pname = "gendef";
version = "11.0.1";
src = fetchgit {
url = "https://git.code.sf.net/p/mingw-w64/mingw-w64.git";
rev = "v${finalAttrs.version}";
hash = "sha256-0vbAHSN+uwxoXXZtbuycP67PxjcB8Ftxd/Oij1gqE3Y=";
};
sourceRoot = "mingw-w64/mingw-w64-tools/gendef";
meta = {
description = "A tool which generate def files from DLLs";
homepage = "https://sourceforge.net/p/mingw-w64/wiki2/gendef/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ hughobrien ];
platforms = lib.platforms.linux;
};
})

View file

@ -589,6 +589,8 @@ with pkgs;
functiontrace-server = callPackage ../development/tools/functiontrace-server { }; functiontrace-server = callPackage ../development/tools/functiontrace-server { };
gendef = callPackage ../development/tools/gendef { };
glade = callPackage ../development/tools/glade { }; glade = callPackage ../development/tools/glade { };
goda = callPackage ../development/tools/goda { }; goda = callPackage ../development/tools/goda { };