Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6fffc4302d2a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7aa23895ab6c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 27, 2020

  1. Copy the full SHA
    35f8128 View commit details

Commits on Nov 26, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7aa2389 View commit details
Showing with 33 additions and 0 deletions.
  1. +31 −0 pkgs/tools/graphics/exifprobe/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
31 changes: 31 additions & 0 deletions pkgs/tools/graphics/exifprobe/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
pname = "exifprobe";
version = "unstable-2018-06-19";

src = fetchFromGitHub {
owner = "hfiguiere";
repo = "exifprobe";
rev = "ce1ea2bc3dbbe8092b26f41cd89831cafe633d69";
sha256 = "1c1fhc0v1m452lgnfcijnvrc0by06qfbhn3zkliqi60kv8l2isbp";
};

CFLAGS = [ "-O2" ];

installFlags = [ "DESTDIR=$(out)" ];

postInstall = ''
mv $out/usr/bin $out/bin
mv $out/usr/share $out/share
rm -r $out/usr
'';

meta = with stdenv.lib; {
description = "Tool for reading EXIF data from image files produced by digital cameras";
homepage = "https://github.com/hfiguiere/exifprobe";
license = licenses.bsd2;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -3741,6 +3741,8 @@ in

exif = callPackage ../tools/graphics/exif { };

exifprobe = callPackage ../tools/graphics/exifprobe { };

exiftags = callPackage ../tools/graphics/exiftags { };

exiftool = perlPackages.ImageExifTool;