summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/colort
diff options
context:
space:
mode:
authorneeasade <nathanisom27@gmail.com>2017-03-18 20:59:09 -0500
committerneeasade <nathanisom27@gmail.com>2017-03-18 20:59:09 -0500
commit9eed726b4fecdd6ea9a19260b8237e441bf4850b (patch)
tree5cd862f059d5810103227bd5fbe163d53e387269 /pkgs/applications/misc/colort
parent16fff5ebce23c0f275abbabfb21ff4270100f674 (diff)
colort: init at unstable-2017-03-13
Diffstat (limited to 'pkgs/applications/misc/colort')
-rw-r--r--pkgs/applications/misc/colort/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/misc/colort/default.nix b/pkgs/applications/misc/colort/default.nix
new file mode 100644
index 000000000000..1c2da306902e
--- /dev/null
+++ b/pkgs/applications/misc/colort/default.nix
@@ -0,0 +1,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;
+ };
+}