pfetch: fix 'dontbuild' attribute (-> "dontBuild"), touchup installPhase

This commit is contained in:
Will Dietz 2020-01-14 14:18:04 -06:00
parent 10b1ba0c93
commit 8e48bafca1
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02

View file

@ -11,11 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "180vvbmvak888vs4dgzlmqk0ss4qfsz09700n4p8s68j7krkxsfq";
};
dontbuild = true;
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp pfetch $out/bin
install -Dm755 -t $out/bin pfetch
'';
meta = with stdenv.lib; {