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

23 lines
573 B
Nix
Raw Normal View History

2017-03-19 01:59:09 +00:00
{ stdenv, fetchFromGitHub }:
2017-03-19 07:39:40 +00:00
stdenv.mkDerivation {
2017-03-19 01:59:09 +00:00
name = "colort-unstable-2017-03-12";
src = fetchFromGitHub {
owner = "neeasade";
repo = "colort";
rev = "8470190706f358dc807b4c26ec3453db7f0306b6";
sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
};
2017-03-19 07:39:40 +00:00
makeFlags = ["PREFIX=$(out)"];
2017-03-19 01:59:09 +00:00
2017-03-19 07:39:40 +00:00
meta = with stdenv.lib; {
2017-03-19 01:59:09 +00:00
description = "A program for 'tinting' color values";
homepage = https://github.com/neeasade/colort;
2017-03-19 07:39:40 +00:00
license = licenses.mit;
platforms = platforms.all;
2017-03-19 19:40:03 +00:00
maintainers = [ maintainers.neeasade ];
2017-03-19 01:59:09 +00:00
};
}