summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-02-16 00:12:32 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-02-16 12:37:39 -0300
commit7f3c4b5df206656f05c3b2c55159a3bf721e3d18 (patch)
treea21951424e19ef35309d3efe1077b041a86719c5
parent6f3517b533b9c5c53cb81f9ad646f467bd81f500 (diff)
downloadnixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.tar
nixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.tar.gz
nixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.tar.bz2
nixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.tar.lz
nixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.tar.xz
nixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.tar.zst
nixpkgs-7f3c4b5df206656f05c3b2c55159a3bf721e3d18.zip
clipman: rename from tools/misc to tools/wayland
-rw-r--r--pkgs/tools/wayland/clipman/default.nix (renamed from pkgs/tools/misc/clipman/default.nix)11
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/tools/misc/clipman/default.nix b/pkgs/tools/wayland/clipman/default.nix
index 80a0afe68d3..3a2c2ca6015 100644
--- a/pkgs/tools/misc/clipman/default.nix
+++ b/pkgs/tools/wayland/clipman/default.nix
@@ -1,4 +1,9 @@
-{ buildGoModule, fetchFromGitHub, lib, wl-clipboard, makeWrapper }:
+{ buildGoModule
+, fetchFromGitHub
+, lib
+, wl-clipboard
+, makeWrapper
+}:
 
 buildGoModule rec {
   pname = "clipman";
@@ -24,9 +29,9 @@ buildGoModule rec {
 
   meta = with lib; {
     homepage = "https://github.com/yory8/clipman";
-    license = licenses.gpl3;
-    maintainers = with maintainers; [ ma27 ];
     description = "A simple clipboard manager for Wayland";
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ ma27 ];
     platforms = platforms.linux;
   };
 }
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d70c6f9bda0..e9bf3f79b6c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1964,7 +1964,7 @@ in
 
   chntpw = callPackage ../tools/security/chntpw { };
 
-  clipman = callPackage ../tools/misc/clipman { };
+  clipman = callPackage ../tools/wayland/clipman { };
 
   clipster = callPackage ../tools/misc/clipster { };