Skip to content

Commit

Permalink
colorpicker: init at git-2018-01-14
Browse files Browse the repository at this point in the history
Click on a pixel on your screen and print its color value in RGB.

Written for X11.

Signed-off-by: William Casarin <jb55@jb55.com>
  • Loading branch information
jb55 authored and infinisil committed Aug 24, 2020
1 parent b89ac20 commit 2bc8e5b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/tools/misc/colorpicker/default.nix
@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, pkg-config, gtk2 }:

stdenv.mkDerivation rec {
pname = "colorpicker";
version = "git-2018-01-14";

src = fetchFromGitHub {
owner = "Ancurio";
repo = "colorpicker";
rev = "287676947e6e3b5b0cee784aeb1638cf22f0ce17";
sha256 = "1kj1dpb79llrfpszraaz6r7ci114zqi5rmqxwsvq2dnnpjxyi29r";
};

nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk2 ];

installPhase = ''
install -Dt $out/bin colorpicker
'';

meta = with stdenv.lib; {
description = "Click on a pixel on your screen and print its color value in RGB";
homepage = "https://github.com/Ancurio/colorpicker";
maintainers = with maintainers; [ jb55 ];
license = licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -180,6 +180,8 @@ in

colorz = callPackage ../tools/misc/colorz { };

colorpicker = callPackage ../tools/misc/colorpicker { };

comedilib = callPackage ../development/libraries/comedilib { };

cpu-x = callPackage ../applications/misc/cpu-x { };
Expand Down

0 comments on commit 2bc8e5b

Please sign in to comment.