nixpkgs/pkgs/tools/misc/freshfetch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
966 B
Nix
Raw Normal View History

2021-06-09 02:05:14 +02:00
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
2021-06-09 02:05:14 +02:00
, AppKit
, CoreFoundation
, DiskArbitration
, Foundation
, IOKit
}:
2021-06-07 00:16:07 +02:00
rustPlatform.buildRustPackage rec {
pname = "freshfetch";
version = "0.2.0";
src = fetchFromGitHub {
owner = "k4rakara";
repo = pname;
rev = "v${version}";
sha256 = "1l9zngr5l12g71j85iyph4jjri3crxc2pi9q0gczrrzvs03439mn";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"clml_rs-0.3.0" = "sha256-KTAm0TCNHGeuOmqmLcZfjl2mQmWcCxWaTPOzA38qbUM=";
};
};
2021-06-07 00:16:07 +02:00
# freshfetch depends on rust nightly features
RUSTC_BOOTSTRAP = 1;
2021-06-09 02:05:14 +02:00
buildInputs = lib.optionals stdenv.isDarwin [
AppKit
CoreFoundation
DiskArbitration
Foundation
IOKit
];
2021-06-07 00:16:07 +02:00
meta = with lib; {
description = "A fresh take on neofetch";
homepage = "https://github.com/k4rakara/freshfetch";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
2023-11-27 02:17:53 +01:00
mainProgram = "freshfetch";
2021-06-07 00:16:07 +02:00
};
}