ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
39 lines
1.4 KiB
Nix
39 lines
1.4 KiB
Nix
{ lib, stdenv, linkFarm, lightdm-mini-greeter, fetchFromGitHub, autoreconfHook, pkg-config, lightdm, gtk3, glib, gdk-pixbuf, wrapGAppsHook, librsvg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lightdm-mini-greeter";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "prikhi";
|
|
repo = "lightdm-mini-greeter";
|
|
rev = version;
|
|
sha256 = "sha256-Pm7ExfusFIPktX2C4UE07qgOVhcWhVxnaD3QARpmu7Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ];
|
|
buildInputs = [ lightdm gtk3 glib gdk-pixbuf librsvg ];
|
|
|
|
configureFlags = [ "--sysconfdir=/etc" ];
|
|
makeFlags = [ "configdir=${placeholder "out"}/etc" ];
|
|
|
|
postInstall = ''
|
|
substituteInPlace "$out/share/xgreeters/lightdm-mini-greeter.desktop" \
|
|
--replace "Exec=lightdm-mini-greeter" "Exec=$out/bin/lightdm-mini-greeter"
|
|
'';
|
|
|
|
passthru.xgreeters = linkFarm "lightdm-mini-greeter-xgreeters" [{
|
|
path = "${lightdm-mini-greeter}/share/xgreeters/lightdm-mini-greeter.desktop";
|
|
name = "lightdm-mini-greeter.desktop";
|
|
}];
|
|
|
|
meta = with lib; {
|
|
description = "A minimal, configurable, single-user GTK3 LightDM greeter";
|
|
mainProgram = "lightdm-mini-greeter";
|
|
homepage = "https://github.com/prikhi/lightdm-mini-greeter";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ mnacamura prikhi ];
|
|
platforms = platforms.linux;
|
|
changelog = "https://github.com/prikhi/lightdm-mini-greeter/blob/master/CHANGELOG.md";
|
|
};
|
|
}
|