mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
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
66 lines
1.9 KiB
Nix
66 lines
1.9 KiB
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxslt, docbook_xsl
|
|
, gtk3, udev, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "plymouth-${version}";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/plymouth/releases/${name}.tar.xz";
|
|
sha256 = "0x2a9s5jdvfcrdnwbdhm5x4ck3zimmcpghnqvhl65byfj25d13cz";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook pkgconfig libxslt docbook_xsl
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3 udev systemd
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i \
|
|
-e "s#\$(\$PKG_CONFIG --variable=systemdsystemunitdir systemd)#$out/etc/systemd/system#g" \
|
|
-e "s#plymouthplugindir=.*#plymouthplugindir=/etc/plymouth/plugins/#" \
|
|
-e "s#plymouththemedir=.*#plymouththemedir=/etc/plymouth/themes#" \
|
|
-e "s#plymouthpolicydir=.*#plymouthpolicydir=/etc/plymouth/#" \
|
|
configure.ac
|
|
|
|
configureFlags="
|
|
--prefix=$out
|
|
--bindir=$out/bin
|
|
--sbindir=$out/sbin
|
|
--exec-prefix=$out
|
|
--libdir=$out/lib
|
|
--libexecdir=$out/lib
|
|
--sysconfdir=/etc
|
|
--with-systemdunitdir=$out/etc/systemd/system
|
|
--localstatedir=/var
|
|
--with-logo=/etc/plymouth/logo.png
|
|
--with-background-color=0x000000
|
|
--with-background-start-color-stop=0x000000
|
|
--with-background-end-color-stop=0x000000
|
|
--with-release-file=/etc/os-release
|
|
--without-system-root-install
|
|
--without-rhgb-compat-link
|
|
--enable-tracing
|
|
--enable-systemd-integration
|
|
--enable-pango
|
|
--enable-gdm-transition
|
|
--enable-gtk"
|
|
|
|
installFlags="
|
|
plymouthd_defaultsdir=$out/share/plymouth
|
|
plymouthd_confdir=$out/etc/plymouth"
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|