mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
9b75cb7d33
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/babl/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.1.52 with grep in /nix/store/z5wrc2k4kda3s32l0c3k9hl0r0lv8sfl-babl-0.1.52 - directory tree listing: https://gist.github.com/c5ddd50334411f6a71d41debc84b71ee - du listing: https://gist.github.com/718f840742912b599e33b591221a51ee
21 lines
502 B
Nix
21 lines
502 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "babl-0.1.52";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
|
|
sha256 = "0v7pkr3qd5jnn0pra88d90ixkl5h9ngg6w660nn1cgh4zjh19xs0";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Image pixel format conversion library";
|
|
homepage = http://gegl.org/babl/;
|
|
license = licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|