lol
0
fork

Configure Feed

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

at release-16.03-start 19 lines 443 B view raw
1{ stdenv, fetchurl, pkgconfig, gnum4 }: 2 3stdenv.mkDerivation rec { 4 name = "libsigc++-2.3.1"; 5 6 src = fetchurl { 7 url = "mirror://gnome/sources/libsigc++/2.3/${name}.tar.xz"; 8 sha256 = "14q3sq6d43f6wfcmwhw4v1aal4ba0h5x9v6wkxy2dnqznd95il37"; 9 }; 10 11 buildInputs = [ pkgconfig gnum4 ]; 12 13 doCheck = true; 14 15 meta = { 16 homepage = http://libsigc.sourceforge.net/; 17 description = "A typesafe callback system for standard C++"; 18 }; 19}