depot/third_party/nixpkgs/pkgs/applications/graphics/phototonic/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

28 lines
691 B
Nix

{ mkDerivation, lib, fetchFromGitHub, qtbase, qmake, exiv2 }:
mkDerivation rec {
pname = "phototonic";
version = "2.1";
src = fetchFromGitHub {
repo = "phototonic";
owner = "oferkv";
rev = "v${version}";
sha256 = "0csidmxl1sfmn6gq81vn9f9jckb4swz3sgngnwqa4f75lr6604h7";
};
buildInputs = [ qtbase exiv2 ];
nativeBuildInputs = [ qmake ];
preConfigure = ''
sed -i 's;/usr;$$PREFIX/;g' phototonic.pro
'';
meta = with lib; {
description = "An image viewer and organizer";
homepage = "https://sourceforge.net/projects/phototonic/";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}