mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
45 lines
938 B
Nix
45 lines
938 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
|
, xwininfo, xdotool, xprop, gawk, coreutils
|
|
, gnugrep, procps }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tdrop";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "noctuid";
|
|
repo = "tdrop";
|
|
rev = version;
|
|
sha256 = "sha256-fHvGXaZL7MMvTnkap341B79PDDo2lOVPPcOH4AX/zXo=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
postInstall = let
|
|
binPath = lib.makeBinPath [
|
|
xwininfo
|
|
xdotool
|
|
xprop
|
|
gawk
|
|
coreutils
|
|
gnugrep
|
|
procps
|
|
];
|
|
in ''
|
|
wrapProgram $out/bin/tdrop --prefix PATH : ${binPath}
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
meta = with lib; {
|
|
description = "Glorified WM-Independent Dropdown Creator";
|
|
mainProgram = "tdrop";
|
|
homepage = "https://github.com/noctuid/tdrop";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|