mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
find-cursor: init at 1.6
Co-authored-by: Ivar <41924494+IvarWithoutBones@users.noreply.github.com>
This commit is contained in:
parent
e84d30d4dd
commit
7e51cfadba
26
pkgs/tools/X11/find-cursor/default.nix
Normal file
26
pkgs/tools/X11/find-cursor/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, libX11, libXdamage, libXrender, libXcomposite, libXext, installShellFiles, git }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "find-cursor";
|
||||
version = "1.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "arp242";
|
||||
repo = "find-cursor";
|
||||
rev = "v${version}";
|
||||
sha256 = "13lpcxklv9ayqapyk9pmwxkinhxah5hkr6n0jc2m5hm68nh220w1";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles git ];
|
||||
buildInputs = [ libX11 libXdamage libXrender libXcomposite libXext ];
|
||||
preInstall = "mkdir -p $out/share/man/man1";
|
||||
installFlags = "PREFIX=${placeholder "out"}";
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
}
|
@ -321,6 +321,8 @@ in
|
||||
|
||||
fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
|
||||
|
||||
find-cursor = callPackage ../tools/X11/find-cursor { };
|
||||
|
||||
prefer-remote-fetch = import ../build-support/prefer-remote-fetch;
|
||||
|
||||
global-platform-pro = callPackage ../development/tools/global-platform-pro/default.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user