Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 29 lines 624 B view raw
1{ stdenv, fetchFromGitHub 2, cmake, pkgconfig }: 3 4stdenv.mkDerivation rec { 5 pname = "libmodule"; 6 version = "5.0.0"; 7 8 src = fetchFromGitHub { 9 owner = "FedeDP"; 10 repo = "libmodule"; 11 rev = version; 12 sha256 = "1cf81sl33xmfn5g150iqcdrjn0lpjlgp53mganwi6x7jda2qk7r6"; 13 }; 14 15 nativeBuildInputs = [ 16 cmake 17 pkgconfig 18 ]; 19 20 meta = with stdenv.lib; { 21 description = "C simple and elegant implementation of an actor library"; 22 homepage = "https://github.com/FedeDP/libmodule"; 23 platforms = platforms.linux; 24 license = licenses.mit; 25 maintainers = with maintainers; [ 26 eadwu 27 ]; 28 }; 29}