summary refs log tree commit diff
path: root/pkgs/os-specific/linux/plymouth/default.nix
blob: a04407ba5c2abca3778b51b6248b6e4277ae4a6b (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
{ stdenv, fetchurl, autoconf, automake, cairo, docbook_xsl, gtk
, libdrm, libpng , libtool, libxslt, makeWrapper, pango, pkgconfig
, udev
}:

stdenv.mkDerivation rec {
  name = "plymouth-${version}";
  version = "0.9.0";

  src = fetchurl {
    url = "http://www.freedesktop.org/software/plymouth/releases/${name}.tar.bz2";
    sha256 = "0kfdwv179brg390ma003pmdqfvqlbybqiyp9fxrxx0wa19sjxqnk";
  };

  buildInputs = [
    autoconf automake cairo docbook_xsl gtk libdrm libpng libtool
    libxslt makeWrapper pango pkgconfig udev
  ];

  prePatch = ''
    sed -e "s#\$(\$PKG_CONFIG --variable=systemdsystemunitdir systemd)#$out/etc/systemd/system#g" \
      -i configure.ac
  '';

  configurePhase = ''
    ./configure \
      --prefix=$out \
      -bindir=$out/bin \
      -sbindir=$out/sbin \
      --exec-prefix=$out \
      --libdir=$out/lib \
      --libexecdir=$out/lib \
      --sysconfdir=$out/etc \
      --localstatedir=/var \
      --with-log-viewer \
      --without-system-root-install \
      --without-rhgb-compat-link \
      --enable-tracing \
      --enable-systemd-integration \
      --enable-pango \
      --enable-gtk
  '';

  meta = with stdenv.lib; {
    homepage = http://www.freedesktop.org/wiki/Software/Plymouth;
    description = "A graphical boot animation";
    license = licenses.gpl2;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}