mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
24 lines
669 B
Nix
24 lines
669 B
Nix
{ 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";
|
|
|
|
meta = {
|
|
description = "A tool which generate def files from DLLs";
|
|
mainProgram = "gendef";
|
|
homepage = "https://sourceforge.net/p/mingw-w64/wiki2/gendef/";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ hughobrien ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|