about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/oroborus/default.nix
blob: 275db56dadaea40d767c4e77370f180036e6dd36 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, stdenv
, fetchurl
, freetype
, fribidi
, libICE
, libSM
, libXaw
, libXext
, libXft
, libXinerama
, libXmu
, libXpm
, libXrandr
, libXrender
, libXt
, pkg-config
, xorgproto
}:

stdenv.mkDerivation rec {
  pname = "oroborus";
  version = "2.0.20";

  src = fetchurl {
    url = "mirror://debian/pool/main/o/oroborus/oroborus_${version}.tar.gz";
    hash = "sha256-UiClQLz2gSxnc/vlg9nqP1T0UsusVb7cqt66jDqae4k=a";
  };

  nativeBuildInputs = [ pkg-config ];

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

  meta = with lib; {
    homepage = "https://web.archive.org/web/20191129172107/https://www.oroborus.org/";
    description = "A really minimalistic X window manager";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.linux;
  };
}