mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
git-quick-stats: use more idiomatic code
In particular, overriding *whole* phases isn't generally a good idea, as you may lose various default hooks.
This commit is contained in:
parent
59dce9c72f
commit
fa9e51d8b6
1 changed files with 1 additions and 3 deletions
|
@ -8,9 +8,7 @@ stdenv.mkDerivation rec {
|
|||
rev = "${version}";
|
||||
sha256 = "1px1sk7b6mjnbclsr1jn33m9k4wd8wqyw4d6w1rgj0ii29lhzmqi";
|
||||
};
|
||||
installPhase = ''
|
||||
PREFIX=$out make install
|
||||
'';
|
||||
PREFIX = builtins.placeholder "out";
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/arzzen/git-quick-stats";
|
||||
description = "A simple and efficient way to access various statistics in git repository";
|
||||
|
|
Loading…
Reference in a new issue