fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, libtool }:
2
3stdenv.mkDerivation {
4 name = "libxmi-1.2";
5
6 src = fetchurl {
7 url = mirror://gnu/libxmi/libxmi-1.2.tar.gz;
8 sha256 = "03d4ikh29l38rl1wavb0icw7m5pp7yilnv7bb2k8qij1dinsymlx";
9 };
10
11 # For the x86_64 GNU/Linux arch to be recognized by 'configure'
12 preConfigure = "cp ${libtool}/share/libtool/build-aux/config.sub .";
13
14 meta = {
15 description = "Library for rasterizing 2-D vector graphics";
16 homepage = https://www.gnu.org/software/libxmi/;
17 license = stdenv.lib.licenses.gpl2Plus;
18 platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
19 maintainers = [ ];
20 };
21}