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

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

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

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libsigcxx ];

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

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

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