Merge pull request #237248 from hughobrien/gendef

gendef: init at 11.0.1
This commit is contained in:
Pol Dellaiera
2023-06-14 08:45:35 +02:00
committed by GitHub
2 changed files with 24 additions and 0 deletions
+22
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;
};
})
+2
View File
@@ -589,6 +589,8 @@ with pkgs;
functiontrace-server = callPackage ../development/tools/functiontrace-server { };
gendef = callPackage ../development/tools/gendef { };
glade = callPackage ../development/tools/glade { };
goda = callPackage ../development/tools/goda { };