nixpkgs/pkgs/applications/misc/colort/default.nix

24 lines
559 B
Nix
Raw Normal View History

2017-03-19 01:59:09 +00:00
{ 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;
};
}