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
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, libjpeg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jhead";
|
|
version = "3.04";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.sentex.net/~mwandel/jhead/${pname}-${version}.tar.gz";
|
|
sha256 = "1j831bqw1qpkbchdriwcy3sgzvbagaj45wlc124fs9bc9z7vp2gg";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://sources.debian.org/data/main/j/jhead/1:3.04-2/debian/patches/01_gpsinfo.c";
|
|
sha256 = "0r8hdbfrdxip4dwz5wqsv47a29j33cx7w5zx4jdhp5l1ihg003lz";
|
|
})
|
|
];
|
|
|
|
buildInputs = [ libjpeg ];
|
|
|
|
makeFlags = [ "CPPFLAGS=" "CFLAGS=-O3" "LDFLAGS=" ];
|
|
|
|
patchPhase = ''
|
|
sed -i '/dpkg-buildflags/d' makefile
|
|
substituteInPlace jhead.c \
|
|
--replace "jpegtran -trim" "${libjpeg.bin}/bin/jpegtran -trim"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p \
|
|
$out/bin \
|
|
$out/man/man1 \
|
|
$out/share/doc/${pname}-${version}
|
|
|
|
cp -v jhead $out/bin
|
|
cp -v jhead.1 $out/man/man1
|
|
cp -v *.txt $out/share/doc/${pname}-${version}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.sentex.net/~mwandel/jhead/";
|
|
description = "Exif Jpeg header manipulation tool";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ rycee ];
|
|
platforms = platforms.all;
|
|
# https://github.com/NixOS/nixpkgs/issues/90828
|
|
knownVulnerabilities = [
|
|
"CVE-2020-6624"
|
|
"CVE-2020-6625"
|
|
];
|
|
};
|
|
}
|