3
0
Fork 0
forked from mirrors/nixpkgs

colort: PR tweaks

This commit is contained in:
Benjamin Staffin 2017-03-19 03:39:40 -04:00
parent 9eed726b4f
commit 14d676dfcf
No known key found for this signature in database
GPG key ID: A490C0134E09AF4A

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
name = "colort-unstable-2017-03-12";
src = fetchFromGitHub {
@ -10,14 +10,12 @@ stdenv.mkDerivation rec {
sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
};
installPhase = ''
make install PREFIX=$out
'';
makeFlags = ["PREFIX=$(out)"];
meta = {
meta = with stdenv.lib; {
description = "A program for 'tinting' color values";
homepage = https://github.com/neeasade/colort;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
license = licenses.mit;
platforms = platforms.all;
};
}