summary refs log tree commit diff
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-08-31 00:43:53 +0200
committerGitHub <noreply@github.com>2018-08-31 00:43:53 +0200
commit16b3217148b02ad5a2149b500dbfcfa08d7b46d7 (patch)
tree44ff1896fe9b730be67b471e5f6a4499915640bd
parentd6ace3a4ad2adcebd883765731570fb8276ce284 (diff)
parentcc424308df11e7925109ae3f0299f0179302da49 (diff)
downloadnixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.tar
nixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.tar.gz
nixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.tar.bz2
nixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.tar.lz
nixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.tar.xz
nixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.tar.zst
nixpkgs-16b3217148b02ad5a2149b500dbfcfa08d7b46d7.zip
Merge pull request #45823 from worldofpeace/lightdm/1.28.0
lightdm: 1.26.0 -> 1.28.0
-rw-r--r--pkgs/applications/display-managers/lightdm/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix
index 4bf81dcdd26..bec07ac2d50 100644
--- a/pkgs/applications/display-managers/lightdm/default.nix
+++ b/pkgs/applications/display-managers/lightdm/default.nix
@@ -9,15 +9,17 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   pname = "lightdm";
-  version = "1.26.0";
+  version = "1.28.0";
 
   name = "${pname}-${version}";
 
+  outputs = [ "out" "dev" ];
+
   src = fetchFromGitHub {
     owner = "CanonicalLtd";
     repo = pname;
     rev = version;
-    sha256 = "1mhj6l025cnf2dzxnbzlk0qa9fm4gj2aw58qh5fl4ky87dp4wdyb";
+    sha256 = "1mmqy1jdvgc0h0h9gli7n4vdv5p8m5019qjr5ni4h73iz6mjdj2b";
   };
 
   nativeBuildInputs = [
@@ -73,6 +75,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     homepage = https://github.com/CanonicalLtd/lightdm;
+    description = "A cross-desktop display manager.";
     platforms = platforms.linux;
     license = licenses.gpl3;
     maintainers = with maintainers; [ ocharles wkennington worldofpeace ];