uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
31
pkgs/tools/graphics/exifprobe/default.nix
Normal file
31
pkgs/tools/graphics/exifprobe/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, 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 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue