mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
alock: 20150418 -> 20160713
This commit is contained in:
parent
c1ff08bfe5
commit
60c9a4c94a
|
@ -2,13 +2,15 @@
|
|||
, libX11, pam, libgcrypt, libXrender, imlib2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
date = "20150418";
|
||||
date = "20160713";
|
||||
name = "alock-${date}";
|
||||
|
||||
# Please consider https://github.com/Arkq/alock/issues/5
|
||||
# before upgrading past this revision.
|
||||
src = fetchgit {
|
||||
url = https://github.com/Arkq/alock;
|
||||
rev = "69b547602d965733d415f877eb59d05966bd158d";
|
||||
sha256 = "0lv2ng5qxzcq0vwbl61dbwigv79sin4zg90y9cgsz6ydvm4ncpas";
|
||||
rev = "329ac152426639fe3c9e53debfc3f973c2988f50";
|
||||
sha256 = "078nf2afyqv7hpk5kw50i57anm7qqd8jnczygnwimh2q40bljm7x";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
|
@ -17,12 +19,13 @@ stdenv.mkDerivation rec {
|
|||
"--enable-xrender"
|
||||
"--enable-imlib2"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig autoreconfHook libX11
|
||||
pam libgcrypt libXrender imlib2
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/Arkq/alock;
|
||||
description = "Simple screen lock application for X server";
|
||||
longDescription = ''
|
||||
|
@ -31,10 +34,10 @@ stdenv.mkDerivation rec {
|
|||
the X server is unlocked and the user can continue to work.
|
||||
|
||||
alock does not provide any fancy animations like xlock or
|
||||
xscreensaver and never will. Its just for locking the current
|
||||
xscreensaver and never will. It's just for locking the current
|
||||
X session.
|
||||
'';
|
||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
||||
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
||||
platforms = with platforms; allBut cygwin;
|
||||
maintainers = with maintainers; [ ftrvxmtrx chris-martin ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue