mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
567 B
Nix
20 lines
567 B
Nix
|
{ stdenv, fetchurl, libX11, libXext, libpng, libXft, libICE, pango, libjpeg}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "libmatchbox-1.9";
|
||
|
|
||
|
buildInputs = [ libXft libICE pango libjpeg ];
|
||
|
propagatedBuildInputs = [ libX11 libXext libpng ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = http://matchbox-project.org/sources/libmatchbox/1.9/libmatchbox-1.9.tar.bz2;
|
||
|
sha256 = "006zdrgs7rgh7dvakjmqsp1q9karq6c5cz4gki2l15fhx0cf40fv";
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
description = "Library of the matchbox X window manager";
|
||
|
homepage = http://matchbox-project.org/;
|
||
|
license = "GPLv2+";
|
||
|
};
|
||
|
}
|