mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
speki: init at 0.4.8
This commit is contained in:
parent
4f37501db9
commit
1fa4a1ea5c
@ -59,6 +59,7 @@ let
|
||||
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||
pop-launcher-plugin-jetbrains = callPackage ./pop-launcher-plugin-jetbrains { };
|
||||
swh = callPackage ./software-heritage { python3Packages = python310Packages; };
|
||||
speki = callPackage ./speki { };
|
||||
tic-80 = callPackage ./tic-80 { };
|
||||
thokr = callPackage ./thokr.nix { };
|
||||
segno = callPackage ./segno.nix { };
|
||||
|
3886
pkgs/speki/Cargo.lock
generated
Normal file
3886
pkgs/speki/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
34
pkgs/speki/default.nix
Normal file
34
pkgs/speki/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ rustPlatform
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
, alsaLib
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "speki";
|
||||
version = "0.4.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TBS1996";
|
||||
repo = "speki";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-cvtMXtg2c9T4CaWAobagS9pW4pX4Q+nwdBvP+9A0er0=";
|
||||
};
|
||||
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
};
|
||||
|
||||
env.OPENSSL_NO_VENDOR = "1";
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl alsaLib ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/TBS1996/speki/";
|
||||
description = "Flashcard app on the terminal";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ foo-dogsquared ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user