lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 22 lines 573 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation { 4 name = "colort-unstable-2017-03-12"; 5 6 src = fetchFromGitHub { 7 owner = "neeasade"; 8 repo = "colort"; 9 rev = "8470190706f358dc807b4c26ec3453db7f0306b6"; 10 sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw"; 11 }; 12 13 makeFlags = ["PREFIX=$(out)"]; 14 15 meta = with stdenv.lib; { 16 description = "A program for 'tinting' color values"; 17 homepage = https://github.com/neeasade/colort; 18 license = licenses.mit; 19 platforms = platforms.all; 20 maintainers = [ maintainers.neeasade ]; 21 }; 22}