lol
at release-16.03-start 23 lines 659 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "git-extras-${version}"; 5 version = "3.0.0"; 6 7 src = fetchurl { 8 url = "https://github.com/tj/git-extras/archive/${version}.tar.gz"; 9 sha256 = "01x8n9i5sgl1s53sgglg9sd9lyp35dhvdhwlx03yimi4i11441s9"; 10 }; 11 12 phases = [ "unpackPhase" "installPhase" ]; 13 14 makeFlags = "DESTDIR=$(out) PREFIX="; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/tj/git-extras; 18 description = "GIT utilities -- repo summary, repl, changelog population, author commit percentages and more"; 19 license = licenses.mit; 20 platforms = platforms.all; 21 maintainers = [ maintainers.spwhitt ]; 22 }; 23}