base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ge / gendef / package.nix
blob6f637b01144d537ca19551773a15a97b27209c43
1 { fetchgit, lib, stdenv }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "gendef";
5   version = "11.0.1";
7   src = fetchgit {
8     url = "https://git.code.sf.net/p/mingw-w64/mingw-w64.git";
9     rev = "v${finalAttrs.version}";
10     hash = "sha256-0vbAHSN+uwxoXXZtbuycP67PxjcB8Ftxd/Oij1gqE3Y=";
11   };
13   sourceRoot = "${finalAttrs.src.name}/mingw-w64-tools/gendef";
15   meta = {
16     description = "Tool which generate def files from DLLs";
17     mainProgram = "gendef";
18     homepage = "https://sourceforge.net/p/mingw-w64/wiki2/gendef/";
19     license = lib.licenses.gpl3Plus;
20     maintainers = with lib.maintainers; [ hughobrien ];
21     platforms = lib.platforms.linux;
22   };