audiobookshelf: 2.18.1 -> 2.19.0 (#378967)
[NixPkgs.git] / pkgs / by-name / ge / gendef / package.nix
blob93144d850708d06abed8f6e6ab7e11ea274e1621
2   fetchgit,
3   lib,
4   stdenv,
5 }:
7 stdenv.mkDerivation (finalAttrs: {
8   pname = "gendef";
9   version = "11.0.1";
11   src = fetchgit {
12     url = "https://git.code.sf.net/p/mingw-w64/mingw-w64.git";
13     rev = "v${finalAttrs.version}";
14     hash = "sha256-0vbAHSN+uwxoXXZtbuycP67PxjcB8Ftxd/Oij1gqE3Y=";
15   };
17   sourceRoot = "${finalAttrs.src.name}/mingw-w64-tools/gendef";
19   meta = {
20     description = "Tool which generate def files from DLLs";
21     mainProgram = "gendef";
22     homepage = "https://sourceforge.net/p/mingw-w64/wiki2/gendef/";
23     license = lib.licenses.gpl3Plus;
24     maintainers = with lib.maintainers; [ hughobrien ];
25     platforms = lib.platforms.linux;
26   };