nixpkgs/pkgs/tools/X11/xgeometry-select/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
841 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libX11 }:
2016-06-07 01:53:45 +01:00
stdenv.mkDerivation rec {
pname = "xgeometry-select";
2016-06-07 01:53:45 +01:00
version = "0.1";
src = fetchurl {
url = "https://gist.githubusercontent.com/obadz/7e008b1f803c4cdcfaf7321c78bcbe92/raw/7e7361e71ff0f74655ee92bd6d2c042f8586f2ae/xgeometry-select.c";
sha256 = "0s7kirgh5iz91m3qy8xiq0j4gljy8zrcnylf4szl5h0lrsaqj7ya";
};
2021-07-18 11:28:46 +01:00
dontUnpack = true;
2016-06-07 01:53:45 +01:00
buildInputs = [ libX11 ];
buildPhase = ''
gcc -Wall -lX11 ${src} -o xgeometry-select
2016-06-07 01:53:45 +01:00
'';
installPhase = ''
mkdir -p $out/bin
mv -v xgeometry-select $out/bin
2016-06-07 01:53:45 +01:00
'';
meta = with lib; {
2016-06-07 01:53:45 +01:00
description = "Select a region with mouse and prints geometry information (x/y/w/h)";
homepage = "https://bbs.archlinux.org/viewtopic.php?pid=660837";
2016-06-07 01:53:45 +01:00
maintainers = with maintainers; [ obadz ];
platforms = platforms.linux;
};
}