art: 1.24.2 -> 1.25.5 (#412709)

* art: 1.24.2 -> 1.25.5

* Update pkgs/by-name/ar/art/package.nix

Co-authored-by: emaryn <197520219+emaryn@users.noreply.github.com>

* Update meta.

---------

Co-authored-by: emaryn <197520219+emaryn@users.noreply.github.com>

authored by

Mica
emaryn
and committed by
GitHub
4907a2e2 c6337123

+10 -10
+10 -10
pkgs/by-name/ar/art/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - fetchFromBitbucket, 4 + fetchFromGitHub, 5 5 cmake, 6 6 pkg-config, 7 7 util-linux, ··· 40 40 41 41 stdenv.mkDerivation rec { 42 42 pname = "art"; 43 - version = "1.24.2"; 43 + version = "1.25.5"; 44 44 45 - src = fetchFromBitbucket { 46 - owner = "agriggio"; 47 - repo = "art"; 48 - rev = version; 49 - hash = "sha256-TpjmmDeXuxnlvCimsq6mZZk15VOVU3WGrPd3vmcIClI="; 45 + src = fetchFromGitHub { 46 + owner = "artpixls"; 47 + repo = "ART"; 48 + tag = version; 49 + hash = "sha256-lKjYSKjZSJ9HtbmGWFR0bVv6hLnRzpklq2ueWirJ+Nw="; 50 50 }; 51 51 52 52 nativeBuildInputs = [ ··· 105 105 env.CXXFLAGS = "-include cstdint"; # needed at least with gcc13 on aarch64-linux 106 106 107 107 meta = { 108 - description = "A raw converter based on RawTherapee"; 109 - homepage = "https://bitbucket.org/agriggio/art/"; 110 - license = lib.licenses.gpl3Only; 108 + description = "Raw converter based on RawTherapee"; 109 + homepage = "https://art.pixls.us"; 110 + license = lib.licenses.gpl3Plus; 111 111 maintainers = with lib.maintainers; [ paperdigits ]; 112 112 mainProgram = "art"; 113 113 platforms = lib.platforms.linux;