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

29 lines
691 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, qtbase, qmake, exiv2 }:
2015-11-22 12:00:57 +00:00
2020-04-07 20:29:20 +00:00
mkDerivation rec {
pname = "phototonic";
2018-11-04 14:45:44 +00:00
version = "2.1";
2015-11-22 12:00:57 +00:00
src = fetchFromGitHub {
repo = "phototonic";
owner = "oferkv";
2018-11-04 14:45:44 +00:00
rev = "v${version}";
sha256 = "0csidmxl1sfmn6gq81vn9f9jckb4swz3sgngnwqa4f75lr6604h7";
2015-11-22 12:00:57 +00:00
};
2015-12-20 02:21:18 +00:00
buildInputs = [ qtbase exiv2 ];
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ qmake ];
2015-11-22 12:00:57 +00:00
preConfigure = ''
sed -i 's;/usr;$$PREFIX/;g' phototonic.pro
2015-11-22 12:00:57 +00:00
'';
meta = with lib; {
2015-11-22 12:00:57 +00:00
description = "An image viewer and organizer";
homepage = "https://sourceforge.net/projects/phototonic/";
2015-11-22 12:00:57 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}