1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/libsigcxx/default.nix
Vladimír Čunát 26b67c2ef9 libsigc++: update 2.3.1 -> 2.6.2
We were using a rather old development (!) release.
2016-03-10 10:22:44 +01:00

25 lines
638 B
Nix

{ stdenv, fetchurl, pkgconfig, gnum4 }:
let
ver_maj = "2.6"; # odd major numbers are unstable
ver_min = "2";
in
stdenv.mkDerivation rec {
name = "libsigc++-${ver_maj}.${ver_min}";
src = fetchurl {
url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz";
sha256 = "fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437";
};
nativeBuildInputs = [ pkgconfig gnum4 ];
doCheck = true;
meta = with stdenv.lib; {
homepage = http://libsigc.sourceforge.net/;
description = "A typesafe callback system for standard C++";
license = licenses.lgpl21;
platforms = platforms.all;
};
}