nixpkgs/pkgs/misc/screensavers/slock/default.nix

37 lines
982 B
Nix
Raw Normal View History

{ stdenv, fetchurl, writeText
, xorgproto, libX11, libXext, libXrandr
# default header can be obtained from
# https://git.suckless.org/slock/tree/config.def.h
, conf ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
2016-11-20 15:11:26 +01:00
name = "slock-1.4";
src = fetchurl {
url = "https://dl.suckless.org/tools/${name}.tar.gz";
2016-11-20 15:11:26 +01:00
sha256 = "0sif752303dg33f14k6pgwq2jp1hjyhqv6x4sy3sj281qvdljf5m";
};
buildInputs = [ xorgproto libX11 libXext libXrandr ];
2019-11-05 02:10:31 +01:00
installFlags = [ "DESTDIR=\${out}" "PREFIX=" ];
postPatch = "sed -i '/chmod u+s/d' Makefile";
2017-06-22 16:41:55 +02:00
preBuild = optionalString (conf != null) ''
cp ${writeText "config.def.h" conf} config.def.h
'';
meta = {
homepage = https://tools.suckless.org/slock;
description = "Simple X display locker";
longDescription = ''
Simple X display locker. This is the simplest X screen locker.
'';
2016-02-14 14:43:45 +01:00
license = licenses.mit;
maintainers = with maintainers; [ astsmtl ];
platforms = platforms.linux;
};
}