owofetch: init at 0.3.1

This commit is contained in:
nullishamy
2022-10-06 00:02:56 +01:00
parent 737f67bbce
commit ace9a48954
2 changed files with 38 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{ lib
, stdenvNoCC
, rustPlatform
, fetchFromGitHub
, Foundation
, DiskArbitration
}:
rustPlatform.buildRustPackage rec {
pname = "owofetch";
version = "0.3.1";
src = fetchFromGitHub {
owner = "netthier";
repo = "owofetch-rs";
rev = "v${version}";
sha256 = "sha256-I8mzOUvm72KLLBumpgn9gNyx9FKvUrB4ze1iM1+OA18=";
};
cargoSha256 = "sha256-rfN4QERs1H1G7ZZim//78vlxbYfU4Cx7SYYUz/QLKeU=";
buildInputs = lib.optionals stdenvNoCC.isDarwin [
Foundation
DiskArbitration
];
meta = with lib; {
description = "Alternative to *fetch, uwuifies all stats";
homepage = "https://github.com/netthier/owofetch-rs";
license = licenses.gpl3Only;
maintainers = with maintainers; [ nullishamy ];
};
}
+4
View File
@@ -30487,6 +30487,10 @@ with pkgs;
owamp = callPackage ../applications/networking/owamp { };
owofetch = callPackage ../tools/misc/owofetch {
inherit (darwin.apple_sdk.frameworks) Foundation DiskArbitration;
};
vgmplay-libvgm = callPackage ../applications/audio/vgmplay-libvgm { };
vgmtools = callPackage ../tools/audio/vgmtools { };