mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f4ea1208ec
*Flags implies a list slightly relevant: > stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172 the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so it's not a breaking change
27 lines
843 B
Nix
27 lines
843 B
Nix
{ lib, stdenv, fetchFromGitHub, libX11, libXdamage, libXrender, libXcomposite, libXext, installShellFiles, git }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "find-cursor";
|
|
version = "1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arp242";
|
|
repo = "find-cursor";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/Dw4bOTCnpCbeI0YJ5DJ9Q2AGBognylUk7xYGn0KIA8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles git ];
|
|
buildInputs = [ libX11 libXdamage libXrender libXcomposite libXext ];
|
|
preInstall = "mkdir -p $out/share/man/man1";
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = with lib; {
|
|
description = "Simple XLib program to highlight the cursor position";
|
|
homepage = "https://github.com/arp242/find-cursor";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.yanganto ];
|
|
};
|
|
}
|