nixpkgs/pkgs/tools/X11/runningx/default.nix

35 lines
820 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libX11 }:
2016-05-31 12:55:55 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "runningx";
2016-05-31 12:55:55 +00:00
version = "1.0";
2021-01-15 09:19:50 +00:00
2016-05-31 12:55:55 +00:00
src = fetchurl {
url = "http://www.fiction.net/blong/programs/mutt/autoview/RunningX.c";
sha256 = "1mikkhrx6jsx716041qdy3nwjac08pxxvxyq2yablm8zg9hrip0d";
};
nativeBuildInputs = [ pkg-config ];
2016-05-31 12:55:55 +00:00
buildInputs = [ libX11 ];
phases = [ "buildPhase" "installPhase" ];
buildPhase = ''
2016-08-12 05:09:15 +00:00
cc -O2 -o RunningX $(pkg-config --cflags --libs x11) $src
2016-05-31 12:55:55 +00:00
'';
installPhase = ''
mkdir -p "$out"/bin
cp -vai RunningX "$out/bin"
'';
meta = {
homepage = "http://www.fiction.net/blong/programs/mutt/";
2016-05-31 12:55:55 +00:00
description = "A program for testing if X is running";
2021-01-15 09:19:50 +00:00
license = lib.licenses.free;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
2016-05-31 12:55:55 +00:00
};
}