mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
pineapple-pictures: init at 0.6.1 (#178583)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
0f9289e1b2
commit
8ef7523c8e
40
pkgs/applications/graphics/pineapple-pictures/default.nix
Normal file
40
pkgs/applications/graphics/pineapple-pictures/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, qtsvg
|
||||
, qttools
|
||||
, exiv2
|
||||
, wrapQtAppsHook
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pineapple-pictures";
|
||||
version = "0.6.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "BLumia";
|
||||
repo = "pineapple-pictures";
|
||||
rev = version;
|
||||
sha256 = "sha256-KTYwe6fS/rUHBbC2B9OdK95mFm3zvgDdGODkg7VQ27M=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
qttools
|
||||
wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtsvg
|
||||
exiv2.lib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Homebrew lightweight image viewer";
|
||||
homepage = "https://github.com/BLumia/pineapple-pictures";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ rewine ];
|
||||
};
|
||||
}
|
@ -29446,6 +29446,8 @@ with pkgs;
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
pineapple-pictures = libsForQt5.callPackage ../applications/graphics/pineapple-pictures { };
|
||||
|
||||
pinfo = callPackage ../applications/misc/pinfo { };
|
||||
|
||||
pinpoint = callPackage ../applications/office/pinpoint { };
|
||||
|
Loading…
Reference in New Issue
Block a user