summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkgs/tools/X11/autocutsel/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/X11/autocutsel/default.nix b/pkgs/tools/X11/autocutsel/default.nix
index ad0165bd87a6..871dc5e130a6 100644
--- a/pkgs/tools/X11/autocutsel/default.nix
+++ b/pkgs/tools/X11/autocutsel/default.nix
@@ -13,15 +13,14 @@ stdenv.mkDerivation {
buildInputs = [ libX11 libXaw ];
installPhase = ''
- mkdir -p $out/bin
- cp autocutsel $out/bin/
- '';
+ mkdir -p $out/bin
+ cp autocutsel $out/bin/
+ '';
meta = {
homepage = "http://www.nongnu.org/autocutsel/";
description = "Autocutsel tracks changes in the server's cutbuffer and CLIPBOARD selection.";
license = "GPLv2+";
- maintainers = with stdenv.lib.maintainers; [];
platforms = with stdenv.lib.platforms; all;
};
}