about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/gendef/default.nix
blob: 9b2418486f178df8dde6b0291dba4600778206cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
})