mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 15:43:39 +00:00
![stuebinm](/assets/img/avatar_default.png)
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, unzip }:
|
|
|
|
let
|
|
compileFlags = lib.concatStringsSep " " ([ "-O3" "-DNDEBUG" ]
|
|
++ lib.optional (stdenv.hostPlatform.isUnix) "-Dunix -pthread"
|
|
++ lib.optional (!stdenv.hostPlatform.isx86) "-DNOJIT");
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "zpaqd";
|
|
version = "715";
|
|
|
|
src = fetchurl {
|
|
url = "http://mattmahoney.net/dc/zpaqd${version}.zip";
|
|
sha256 = "sha256-Mx87Zt0AASk0ZZCjyTzYbhlYJAXBlb59OpUWsqynyCA=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildPhase = ''
|
|
$CXX ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
|
|
$CXX ${compileFlags} -L. -L"$out/lib" -lzpaq zpaqd.cpp -o zpaqd
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out"/{bin,include,lib,share/doc/zpaq}
|
|
cp libzpaq.so "$out/lib"
|
|
cp zpaqd "$out/bin"
|
|
cp libzpaq.h "$out/include"
|
|
cp readme_zpaqd.txt "$out/share/doc/zpaq"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "ZPAQ archive (de)compressor and algorithm development tool";
|
|
mainProgram = "zpaqd";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|