mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
nostui: init 0.1.0
This commit is contained in:
parent
35a24e21b5
commit
dbed177528
3234
pkgs/by-name/no/nostui/Cargo.lock
generated
Normal file
3234
pkgs/by-name/no/nostui/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
43
pkgs/by-name/no/nostui/package.nix
Normal file
43
pkgs/by-name/no/nostui/package.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
darwin,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "nostui";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "akiomik";
|
||||
repo = "nostui";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-RCD11KdzM66Mkydc51r6fG+q8bmKl5eZma58YoARwPo=";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin (
|
||||
with darwin.apple_sdk; [ frameworks.SystemConfiguration ]
|
||||
);
|
||||
|
||||
GIT_HASH = "000000000000000000000000000000000000000000000000000";
|
||||
|
||||
checkFlags = [
|
||||
# skip failing test due to nix build timestamps
|
||||
"--skip=widgets::text_note::tests::test_created_at"
|
||||
];
|
||||
|
||||
cargoHash = "sha256-8ciA1FoGdnU+GWRcYJc8zU2FpUgGwTZSZynvAi1luYo=";
|
||||
|
||||
cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; };
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/akiomik/nostui";
|
||||
description = "TUI client for Nostr";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ heywoodlh ];
|
||||
platforms = platforms.unix;
|
||||
mainProgram = "nostui";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user