summary refs log tree commit diff
path: root/pkgs/development/libraries/libpar2/default.nix
blob: bbdce71bad6ae5837eaa64a05e5749a04cc33e68 (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
{ stdenv, fetchurl, pkgconfig, libsigcxx }:

let version = "0.4"; in

stdenv.mkDerivation rec {
  pname = "libpar2";
  inherit version;

  src = fetchurl {
    url = "https://launchpad.net/libpar2/trunk/${version}/+download/${pname}-${version}.tar.gz";
    sha256 = "1m4ncws1h03zq7zyqbaymvjzzbh1d3lc4wb1aksrdf0ync76yv9i";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libsigcxx ];

  patches = [ ./libpar2-0.4-external-verification.patch ];

  CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11";

  meta = {
    homepage = http://parchive.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2Plus;
    description = "A library for using Parchives (parity archive volume sets)";
    platforms = stdenv.lib.platforms.unix;
  };
}