mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
29 lines
895 B
Nix
29 lines
895 B
Nix
{ lib, stdenv, fetchurl }:
|
|
stdenv.mkDerivation {
|
|
pname = "jpegexiforient";
|
|
version = "unstable-2002-02-17";
|
|
src = fetchurl {
|
|
url = "http://sylvana.net/jpegcrop/jpegexiforient.c";
|
|
sha256 = "1v0f42cvs0397g9v46p294ldgxwbp285npg6npgnlnvapk6nzh5s";
|
|
};
|
|
unpackPhase = ''
|
|
cp $src jpegexiforient.c
|
|
'';
|
|
buildPhase = ''
|
|
$CC -o jpegexiforient jpegexiforient.c
|
|
'';
|
|
installPhase = ''
|
|
install -Dt $out/bin jpegexiforient
|
|
'';
|
|
meta = with lib; {
|
|
description = "Utility program to get and set the Exif Orientation Tag";
|
|
homepage = "http://sylvana.net/jpegcrop/exif_orientation.html";
|
|
# Website doesn't mention any license, but I think it's safe to assume this
|
|
# to be free since it's from IJG, the current maintainers of libjpeg
|
|
license = licenses.free;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
mainProgram = "jpegexiforient";
|
|
};
|
|
}
|