biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / colort / default.nix
blobe7f3429fe8d7ccd31e114c1324a8dd750b01f824
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "colort";
5   version = "unstable-2017-03-12";
7   src = fetchFromGitHub {
8     owner = "neeasade";
9     repo = "colort";
10     rev = "8470190706f358dc807b4c26ec3453db7f0306b6";
11     sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
12   };
14   makeFlags = [ "PREFIX=$(out)" ];
16   meta = with lib; {
17     description = "Program for 'tinting' color values";
18     homepage = "https://github.com/neeasade/colort";
19     license = licenses.mit;
20     platforms = platforms.all;
21     maintainers = [ maintainers.neeasade ];
22     mainProgram = "colort";
23   };