about summary refs log tree commit diff
path: root/pkgs/development/libraries/libmodule/default.nix
blob: bcd20c3b4076c1df496dac574708f864875918e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub
, cmake, pkgconfig }:

stdenv.mkDerivation rec {
  pname = "libmodule";
  version = "4.2.0";

  src = fetchFromGitHub {
    owner = "FedeDP";
    repo = "libmodule";
    rev = version;
    sha256 = "1qn54pysdm0q7v1gnisd43i5i4ylf8s8an77jk6jd8qimysv08mx";
  };

  nativeBuildInputs = [
    cmake
    pkgconfig
  ];

  meta = with stdenv.lib; {
    description = "C simple and elegant implementation of an actor library";
    homepage = https://github.com/FedeDP/libmodule;
    platforms = platforms.linux;
    license = licenses.mit;
    maintainers = with maintainers; [
      eadwu
    ];
  };
}