nixpkgs-suyu/pkgs/tools/X11/xcwd/default.nix

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

32 lines
720 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libX11 }:
2017-07-13 02:11:47 +02:00
2022-10-23 09:31:40 +02:00
stdenv.mkDerivation rec {
version = "1.0";
pname = "xcwd";
2017-07-13 02:11:47 +02:00
src = fetchFromGitHub {
owner = "schischi";
repo = "xcwd";
2022-10-23 09:31:40 +02:00
rev = "v${version}";
sha256 = "sha256-M6/1H6hI50Cvx40RTKzZXoUui0FGZfwe1IwdaxMJIQo=";
2017-07-13 02:11:47 +02:00
};
buildInputs = [ libX11 ];
makeFlags = [ "prefix=$(out)" ];
2017-07-13 02:11:47 +02:00
installPhase = ''
install -D xcwd "$out/bin/xcwd"
'';
meta = with lib; {
2017-07-13 02:11:47 +02:00
description = ''
A simple tool which print the current working directory of the currently focused window
'';
homepage = "https://github.com/schischi/xcwd";
2017-07-13 02:11:47 +02:00
maintainers = [ maintainers.grburst ];
license = licenses.bsd3;
platforms = platforms.linux;
};
}