lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 23 lines 609 B view raw
1{ stdenv, lib, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "dlfcn"; 5 version = "1.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "dlfcn-win32"; 9 repo = "dlfcn-win32"; 10 rev = "v${version}"; 11 sha256 = "sha256-ljVTMBiGp8TPufrQcK4zQtcVH1To4zcfBAbUOb+v910="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 homepage = "https://github.com/dlfcn-win32/dlfcn-win32"; 18 description = "Set of functions that allows runtime dynamic library loading"; 19 license = licenses.mit; 20 platforms = platforms.windows; 21 maintainers = with maintainers; [ marius851000 ]; 22 }; 23}