summary refs log tree commit diff
path: root/pkgs/applications/window-managers/oroborus/default.nix
blob: 21b18a4917bd658ec714212f2217868024fee9b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, pkgconfig
, freetype, fribidi
, libSM, libICE, libXt, libXaw, libXmu
, libXext, libXft, libXpm, libXrandr
, libXrender, xorgproto, libXinerama }:

with stdenv.lib;
stdenv.mkDerivation rec {

  pname = "oroborus";
  version = "2.0.20";

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ freetype fribidi libSM libICE libXt libXaw libXmu libXext
                  libXft libXpm libXrandr libXrender xorgproto libXinerama ];

  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";
    homepage = "https://www.oroborus.org/";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.linux;
  };
}