57bccb3cb8
* 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
22 lines
655 B
Nix
22 lines
655 B
Nix
{ stdenv, fetchurl, libmatchbox, pkgconfig}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "matchbox-${version}";
|
|
version = "1.2";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libmatchbox ];
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2";
|
|
sha256 = "1zyfq438b466ygcz78nvsmnsc5bhg4wcfnpxb43kbkwpyx53m8l1";
|
|
};
|
|
|
|
meta = {
|
|
description = "X window manager for non-desktop embedded systems";
|
|
homepage = http://matchbox-project.org/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|