Merge pull request #122839 from IvarWithoutBones/init/yafetch
yafetch: init at unstable-2021-05-13
This commit is contained in:
commit
3b8bb9bf80
29
pkgs/tools/misc/yafetch/default.nix
Normal file
29
pkgs/tools/misc/yafetch/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, stdenv, fetchFromGitLab }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "yafetch";
|
||||
version = "unstable-2021-05-13";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cyberkitty";
|
||||
repo = pname;
|
||||
rev = "627465e6bf0192a9bc10f9c9385cde544766486f";
|
||||
sha256 = "1r8jnzfyjs5ardq697crwysclfm3k8aiqvfbsyhsl251a08yls5c";
|
||||
};
|
||||
|
||||
# Use the provided NixOS logo automatically
|
||||
prePatch = ''
|
||||
echo "#include \"ascii/nixos.h\"" > config.h
|
||||
'';
|
||||
|
||||
# Fixes installation path
|
||||
DESTDIR = placeholder "out";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://gitlab.com/cyberkitty/yafetch";
|
||||
description = "Yet another fetch clone written in C++";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = [ maintainers.ivar ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -830,6 +830,10 @@ in
|
||||
wine = wineWowPackages.staging;
|
||||
};
|
||||
|
||||
yafetch = callPackage ../tools/misc/yafetch {
|
||||
stdenv = clangStdenv;
|
||||
};
|
||||
|
||||
### APPLICATIONS/TERMINAL-EMULATORS
|
||||
|
||||
alacritty = callPackage ../applications/terminal-emulators/alacritty {
|
||||
|
Loading…
Reference in New Issue
Block a user