lol

fbida: 2.11 -> 2.12

+7 -9
+7 -9
pkgs/applications/graphics/fbida/default.nix
··· 1 { stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp, libdrm 2 - , pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends 3 - }: 4 5 stdenv.mkDerivation rec { 6 - name = "fbida-2.11"; 7 8 src = fetchurl { 9 url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz"; 10 - sha256 = "00x1lppb66b0gvp6sqs7zjgnlfh80lnkwvsm15ifzvlss3b67akw"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig which ]; 14 - buildInputs = 15 - [ libexif libjpeg libpng libungif freetype fontconfig libtiff libwebp 16 - imagemagick curl sane-backends libdrm 17 - ]; 18 19 makeFlags = [ "prefix=$(out)" "verbose=yes" ]; 20 ··· 34 homepage = https://www.kraxel.org/blog/linux/fbida/; 35 license = licenses.gpl2; 36 maintainers = with maintainers; [ pSub ]; 37 - platforms = with platforms; linux; 38 }; 39 }
··· 1 { stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp, libdrm 2 + , pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends, libXpm 3 + , epoxy, poppler }: 4 5 stdenv.mkDerivation rec { 6 + name = "fbida-2.12"; 7 8 src = fetchurl { 9 url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz"; 10 + sha256 = "0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig which ]; 14 + buildInputs = [ libexif libjpeg libpng libungif freetype fontconfig libtiff 15 + libwebp imagemagick curl sane-backends libdrm libXpm epoxy poppler ]; 16 17 makeFlags = [ "prefix=$(out)" "verbose=yes" ]; 18 ··· 32 homepage = https://www.kraxel.org/blog/linux/fbida/; 33 license = licenses.gpl2; 34 maintainers = with maintainers; [ pSub ]; 35 + platforms = platforms.linux; 36 }; 37 }