nixpkgs/pkgs/development/tools/gendef/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
669 B
Nix
Raw Normal View History

2023-06-14 03:51:53 +00:00
{ 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 = "${finalAttrs.src.name}/mingw-w64-tools/gendef";
2023-06-14 03:51:53 +00:00
meta = {
description = "A tool which generate def files from DLLs";
mainProgram = "gendef";
2023-06-14 03:51:53 +00:00
homepage = "https://sourceforge.net/p/mingw-w64/wiki2/gendef/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ hughobrien ];
platforms = lib.platforms.linux;
};
})