mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
pkgs/nekofetch: init at 1.4
This commit is contained in:
parent
7fd895536a
commit
f8605cbc4f
3 changed files with 25 additions and 0 deletions
|
|
@ -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 { };
|
||||
|
|
|
|||
22
pkgs/nekofetch/default.nix
Normal file
22
pkgs/nekofetch/default.nix
Normal 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 ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue