slock: add configFile support

fixes #24994
This commit is contained in:
Masayuki Takeda 2017-04-18 19:19:52 +09:00 committed by Jörg Thalheim
parent 1eabc23961
commit 733cc23a1b
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -1,13 +1,27 @@
{ stdenv, fetchurl, xproto, libX11, libXext, libXrandr }:
{ stdenv, lib, fetchurl, writeText
, xproto, libX11, libXext, libXrandr
# default header can be obtained from
# http://git.suckless.org/slock/tree/config.def.h
, conf ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "slock-1.4";
src = fetchurl {
url = "http://dl.suckless.org/tools/${name}.tar.gz";
sha256 = "0sif752303dg33f14k6pgwq2jp1hjyhqv6x4sy3sj281qvdljf5m";
};
buildInputs = [ xproto libX11 libXext libXrandr ];
installFlags = "DESTDIR=\${out} PREFIX=";
meta = with stdenv.lib; {
preBuild = optionalString (conf != null) ''
cp ${writeText "config.def.h" conf} config.def.h
'';
meta = {
homepage = http://tools.suckless.org/slock;
description = "Simple X display locker";
longDescription = ''