2015-07-21 13:49:29 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
, freetype, fribidi
|
|
|
|
, libSM, libICE, libXt, libXaw, libXmu
|
|
|
|
, libXext, libXft, libXpm, libXrandr
|
|
|
|
, libXrender, xextproto, libXinerama }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "oroborus-${version}";
|
|
|
|
version = "2.0.20";
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-10-06 19:34:24 -07:00
|
|
|
buildInputs = [ freetype fribidi libSM libICE libXt libXaw libXmu libXext
|
|
|
|
libXft libXpm libXrandr libXrender xextproto libXinerama ];
|
2015-07-21 13:49:29 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ftp.debian.org/debian/pool/main/o/oroborus/oroborus_${version}.tar.gz";
|
|
|
|
sha256 = "12bvk8x8rfnymbfbwmdcrd9g8m1zxbcq7rgvfdkjr0gnpi0aa82j";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A really minimalistic X window manager";
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://www.oroborus.org/;
|
2015-07-21 13:49:29 -07:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|