nixpkgs/pkgs/development/libraries/libmatchbox/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

22 lines
690 B
Nix

{ stdenv, fetchurl, libX11, libXext, libpng, libXft, libICE, pango, libjpeg}:
stdenv.mkDerivation rec {
name = "libmatchbox-${version}";
version = "1.11";
buildInputs = [ libXft libICE pango libjpeg ];
propagatedBuildInputs = [ libX11 libXext libpng ];
src = fetchurl {
url = "https://downloads.yoctoproject.org/releases/matchbox/libmatchbox/${version}/libmatchbox-${version}.tar.bz2";
sha256 = "0lvv44s3bf96zvkysa4ansxj2ffgj3b5kgpliln538q4wd9ank15";
};
meta = {
description = "Library of the matchbox X window manager";
homepage = http://matchbox-project.org/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}