nixpkgs/pkgs/applications/graphics/phototonic/default.nix

31 lines
710 B
Nix
Raw Normal View History

2015-12-20 03:21:18 +01:00
{ stdenv, fetchFromGitHub, qtbase, exiv2 }:
2015-11-22 13:00:57 +01:00
stdenv.mkDerivation rec {
name = "phototonic-${version}";
version = "1.7";
src = fetchFromGitHub {
repo = "phototonic";
owner = "oferkv";
rev = "v${version}";
sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj";
};
2015-12-20 03:21:18 +01:00
buildInputs = [ qtbase exiv2 ];
2015-11-22 13:00:57 +01:00
configurePhase = ''
sed -i 's;/usr;;' phototonic.pro
qmake PREFIX=""
'';
installFlags = [ "INSTALL_ROOT=$(out)" ];
meta = with stdenv.lib; {
description = "An image viewer and organizer";
homepage = http://oferkv.github.io/phototonic/;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}