about summary refs log tree commit diff
path: root/pkgs/development/tools/gendef
diff options
context:
space:
mode:
authorHugh O'Brien <github@hughobrien.ie>2023-06-13 23:51:53 -0400
committerHugh O'Brien <github@hughobrien.ie>2023-06-13 23:51:53 -0400
commit1455ac5377781b56a166b6dbfbe3c8f1f538d376 (patch)
treedf048f59a347a9d259af9ce721e92bf2b06023a5 /pkgs/development/tools/gendef
parent907f5f46fad98375306ffd85808a22a8aaf6ba47 (diff)
downloadnixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.tar
nixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.tar.gz
nixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.tar.bz2
nixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.tar.lz
nixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.tar.xz
nixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.tar.zst
nixlib-1455ac5377781b56a166b6dbfbe3c8f1f538d376.zip
gendef: init at 11.0.1
Diffstat (limited to 'pkgs/development/tools/gendef')
-rw-r--r--pkgs/development/tools/gendef/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/gendef/default.nix b/pkgs/development/tools/gendef/default.nix
new file mode 100644
index 000000000000..9b2418486f17
--- /dev/null
+++ b/pkgs/development/tools/gendef/default.nix
@@ -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;
+  };
+})