Merge pull request #194070 from nullishamy/master
owofetch: init at 0.3.1
This commit is contained in:
@@ -9902,6 +9902,12 @@
|
||||
githubId = 1809198;
|
||||
name = "Victor Roest";
|
||||
};
|
||||
nullishamy = {
|
||||
email = "amy.codes@null.net";
|
||||
name = "nullishamy";
|
||||
github = "nullishamy";
|
||||
githubId = 99221043;
|
||||
};
|
||||
numinit = {
|
||||
email = "me@numin.it";
|
||||
github = "numinit";
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -30564,6 +30564,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 { };
|
||||
|
||||
Reference in New Issue
Block a user