summary refs log tree commit diff
path: root/pkgs/applications/misc/colort/default.nix
blob: 1c2da306902e442dde999b44aca8f788bfe3b9db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "colort-unstable-2017-03-12";

  src = fetchFromGitHub {
    owner = "neeasade";
    repo = "colort";
    rev = "8470190706f358dc807b4c26ec3453db7f0306b6";
    sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
  };

 installPhase = ''
    make install PREFIX=$out
  '';

  meta = {
    description = "A program for 'tinting' color values";
    homepage = https://github.com/neeasade/colort;
    license = stdenv.lib.licenses.mit;
    platforms = stdenv.lib.platforms.all;
  };
}