mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
art: init at 1.22.1
This commit is contained in:
parent
3203320d75
commit
804de78a0a
84
pkgs/by-name/ar/art/package.nix
Normal file
84
pkgs/by-name/ar/art/package.nix
Normal file
@ -0,0 +1,84 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromBitbucket
|
||||
, cmake
|
||||
, pkg-config
|
||||
, wrapGAppsHook3
|
||||
, makeWrapper
|
||||
, pixman
|
||||
, libpthreadstubs
|
||||
, gtkmm3
|
||||
, libXau
|
||||
, libXdmcp
|
||||
, lcms2
|
||||
, libiptcdata
|
||||
, fftw
|
||||
, expat
|
||||
, pcre
|
||||
, libsigcxx
|
||||
, lensfun
|
||||
, librsvg
|
||||
, libcanberra-gtk3
|
||||
, exiv2
|
||||
, exiftool
|
||||
, mimalloc
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "art";
|
||||
version = "1.22.1";
|
||||
|
||||
src = fetchFromBitbucket {
|
||||
owner = "agriggio";
|
||||
repo = "art";
|
||||
rev = version;
|
||||
hash = "sha256-f6SnTvMelJaPGNeGboI34RvWXcJatEi1G6vfAdDFy8A=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
wrapGAppsHook3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pixman
|
||||
libpthreadstubs
|
||||
gtkmm3
|
||||
libXau
|
||||
libXdmcp
|
||||
lcms2
|
||||
libiptcdata
|
||||
fftw
|
||||
expat
|
||||
pcre
|
||||
libsigcxx
|
||||
lensfun
|
||||
librsvg
|
||||
exiv2
|
||||
exiftool
|
||||
libcanberra-gtk3
|
||||
mimalloc
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DPROC_TARGET_NUMBER=2"
|
||||
"-DCACHE_NAME_SUFFIX=\"\""
|
||||
];
|
||||
|
||||
CMAKE_CXX_FLAGS = toString [
|
||||
"-std=c++11"
|
||||
"-Wno-deprecated-declarations"
|
||||
"-Wno-unused-result"
|
||||
];
|
||||
env.CXXFLAGS = "-include cstdint"; # needed at least with gcc13 on aarch64-linux
|
||||
|
||||
meta = {
|
||||
description = "A raw converter based on RawTherapee";
|
||||
homepage = "https://bitbucket.org/agriggio/art/";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ paperdigits ];
|
||||
mainProgram = "art";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -36151,6 +36151,10 @@ with pkgs;
|
||||
|
||||
arena = callPackage ../games/arena { };
|
||||
|
||||
art = callPackage ../by-name/ar/art/package.nix {
|
||||
fftw = fftwSinglePrec;
|
||||
};
|
||||
|
||||
arx-libertatis = libsForQt5.callPackage ../games/arx-libertatis { };
|
||||
|
||||
asc = callPackage ../games/asc {
|
||||
|
Loading…
Reference in New Issue
Block a user