forked from mirrors/nixpkgs
linux_logo: init at 6.0
This commit is contained in:
parent
8b49105513
commit
c39e206811
34
pkgs/tools/misc/linux-logo/default.nix
Normal file
34
pkgs/tools/misc/linux-logo/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, gettext
|
||||
, which
|
||||
, nix-update-script
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "linux_logo";
|
||||
version = "6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "deater";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-q8QznEgnALJS//l7XXHZlq07pI2jCCm2USEU96rO8N0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gettext which ];
|
||||
|
||||
passthru.updateScript = nix-update-script {
|
||||
attrPath = pname;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Prints an ASCII logo and some system info";
|
||||
homepage = "http://www.deater.net/weave/vmwprod/linux_logo";
|
||||
changelog = "https://github.com/deater/linux_logo/blob/${version}/CHANGES_IN_${version}";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ azahi ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -23955,6 +23955,8 @@ with pkgs;
|
|||
|
||||
quicktemplate = callPackage ../development/tools/quicktemplate { };
|
||||
|
||||
linux_logo = callPackage ../tools/misc/linux-logo { };
|
||||
|
||||
linux-pam = callPackage ../os-specific/linux/pam { };
|
||||
|
||||
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };
|
||||
|
|
Loading…
Reference in a new issue