pkgs/nekofetch: Removed due to problematicness

This commit is contained in:
kat witch 2021-04-07 18:48:37 +01:00
parent 88667142c9
commit a0f53d2cd2
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 0 additions and 32 deletions

View file

@ -30,8 +30,6 @@ let
screenstub = unstable.callPackage ./screenstub { };
nekofetch = unstable.callPackage ./nekofetch { };
kat-glauca-dns = unstable.callPackage ./kat-glauca-dns { inherit sources; };
kat-website = super.callPackage ./kat-website { };

View file

@ -1,30 +0,0 @@
{ fetchFromGitHub, makeWrapper, lib, stdenv, jp2a, imagemagick, curl, neofetch
}:
stdenv.mkDerivation rec {
pname = "nekofetch";
version = "1.4";
src = fetchFromGitHub {
rev = "9382314f82d37c7039e097c7eb4cf5460168d49d";
owner = "proprdev";
repo = "nekofetch";
sha256 = "03p1br1pn9j9nsdjg29rdznm5qh34p8dx0834rgmlc3pxlr910ng";
};
nativeBuildInputs = [ makeWrapper ];
buildPhase = "true";
installPhase = ''
mkdir -p $out/bin
cp $src/nekofetch $out/bin/
'';
nekoPath = lib.makeBinPath [ jp2a imagemagick curl neofetch ];
preFixup = ''
wrapProgram $out/bin/nekofetch --prefix PATH : $nekoPath
'';
}