4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, unzip }:
|
|
|
|
let
|
|
# Generated upstream information
|
|
s = rec {
|
|
baseName="zpaqd";
|
|
version="715";
|
|
name="${baseName}-${version}";
|
|
hash="0868lynb45lm79yvx5f10lj5h6bfv0yck8whcls2j080vmk3n7rk";
|
|
url="http://mattmahoney.net/dc/zpaqd715.zip";
|
|
sha256="0868lynb45lm79yvx5f10lj5h6bfv0yck8whcls2j080vmk3n7rk";
|
|
};
|
|
|
|
compileFlags = stdenv.lib.concatStringsSep " " ([ "-O3" "-DNDEBUG" ]
|
|
++ stdenv.lib.optional (stdenv.hostPlatform.isUnix) "-Dunix -pthread"
|
|
++ stdenv.lib.optional (!stdenv.hostPlatform.isx86) "-DNOJIT");
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit (s) name version;
|
|
|
|
src = fetchurl {
|
|
inherit (s) url sha256;
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
buildPhase = ''
|
|
g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
|
|
g++ ${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";
|
|
license = licenses.gpl3Plus ;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|