1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/development/libraries/libpar2/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

26 lines
725 B
Nix

{ 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 = "https://parchive.sourceforge.net/";
license = lib.licenses.gpl2Plus;
description = "Library for using Parchives (parity archive volume sets)";
platforms = lib.platforms.unix;
};
}