pkgs/nekofetch: init at 1.4

This commit is contained in:
kat witch 2021-03-27 15:31:07 +00:00
parent 7fd895536a
commit f8605cbc4f
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 25 additions and 0 deletions

View file

@ -33,6 +33,8 @@ 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

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