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/libsigcxx/1.2.nix

22 lines
592 B

{lib, stdenv, fetchurl, pkg-config, m4}:
stdenv.mkDerivation rec {
pname = "libsigc++";
version = "1.2.7";
src = fetchurl {
url = "mirror://gnome/sources/libsigc++/1.2/libsigc++-${version}.tar.bz2";
sha256 = "099224v5y0y1ggqrfc8vga8afr3nb93iicn7cj8xxgsrwa83s5nr";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ m4];
meta = with lib; {
homepage = "https://libsigcplusplus.github.io/libsigcplusplus/";
description = "A typesafe callback system for standard C++";
branch = "1.2";
platforms = platforms.unix;
license = licenses.lgpl3;
};
}