nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "babl-0.1.28";
5
6 src = fetchurl {
7 url = "http://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
8 sha256 = "00w6xfcv960c98qvxv81gcbj8l1jiab9sggmdl77m19awwiyvwv3";
9 };
10
11 meta = with stdenv.lib; {
12 description = "Image pixel format conversion library";
13 homepage = http://gegl.org/babl/;
14 license = licenses.gpl3;
15 platforms = platforms.unix;
16 };
17}