mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
ac592121b9
This avoids files being installed to $out/nix/store
29 lines
691 B
Nix
29 lines
691 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xrectsel-${version}";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lolilolicon";
|
|
repo = "xrectsel";
|
|
rev = "${version}";
|
|
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ libX11 ];
|
|
|
|
postBuild = ''
|
|
make install
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Print the geometry of a rectangular screen region";
|
|
homepage = https://github.com/lolilolicon/xrectsel;
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.guyonvarch ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|