My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libmodule/default.nix

29 lines
623 B

{ lib, stdenv, fetchFromGitHub
, cmake, pkg-config }:
stdenv.mkDerivation rec {
pname = "libmodule";
version = "5.0.1";
src = fetchFromGitHub {
owner = "FedeDP";
repo = "libmodule";
rev = version;
sha256 = "sha256-wkRiDWO9wUyxkAeqvm99u22Jq4xnQJx6zS7Sb+R8iMg=";
};
nativeBuildInputs = [
cmake
pkg-config
];
meta = with 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
];
};
}