2024-07-17 04:26:36 +01:00
|
|
|
{ rustPlatform, fetchCrate, pkg-config, openssl }:
|
2021-03-08 14:11:03 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "shticker-book-unwritten";
|
2022-10-15 14:34:16 +01:00
|
|
|
version = "1.2.0";
|
2021-03-08 14:11:03 +00:00
|
|
|
|
2021-10-07 23:40:18 +01:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit version;
|
|
|
|
crateName = "shticker_book_unwritten";
|
2024-07-12 19:42:22 +01:00
|
|
|
hash = "sha256-jI2uL8tMUmjZ5jPkCV2jb98qtKwi9Ti4NVCPfuO3iB4=";
|
2021-03-08 14:11:03 +00:00
|
|
|
};
|
|
|
|
|
2024-07-02 10:04:59 +01:00
|
|
|
cargoHash = "sha256-Tney9SG9MZh7AUIT1h/dlgJyRrSPX7mUhfsKD1Rfsfc=";
|
2021-03-08 14:11:03 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
}
|