From 73ed1693f8323822e200dcd0da05f52f8e113633 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 19 Jan 2011 22:56:25 +0000 Subject: GNU libxmi: Augment `meta'. svn path=/nixpkgs/trunk/; revision=25637 --- pkgs/development/libraries/libxmi/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'pkgs/development/libraries/libxmi') diff --git a/pkgs/development/libraries/libxmi/default.nix b/pkgs/development/libraries/libxmi/default.nix index 7d3894e2222..ececdabb56c 100644 --- a/pkgs/development/libraries/libxmi/default.nix +++ b/pkgs/development/libraries/libxmi/default.nix @@ -1,19 +1,21 @@ -{stdenv, fetchurl, libtool}: +{ stdenv, fetchurl, libtool }: stdenv.mkDerivation { name = "libxmi-1.2"; - + src = fetchurl { url = mirror://gnu/libxmi/libxmi-1.2.tar.gz; sha256 = "03d4ikh29l38rl1wavb0icw7m5pp7yilnv7bb2k8qij1dinsymlx"; }; - # For the x86_64 linux arch to be recognized by 'configure' + # For the x86_64 GNU/Linux arch to be recognized by 'configure' preConfigure = "cp ${libtool}/share/libtool/config/config.sub ."; - + meta = { - description = "Library for rasterizing 2-D vector graphics"; + description = "GNU libxmi, a library for rasterizing 2-D vector graphics"; homepage = http://www.gnu.org/software/libxmi/; - license = "GPLv2"; + license = "GPLv2+"; + platforms = stdenv.lib.platforms.gnu; # arbitrary choice + maintainers = [ stdenv.lib.maintainers.ludo ]; }; } -- cgit 1.4.1