2021-10-08 00:40:18 +02:00
|
|
|
{ lib, rustPlatform, fetchCrate, pkg-config, openssl }:
|
2021-03-08 15:11:03 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "shticker-book-unwritten";
|
2022-10-15 15:34:16 +02:00
|
|
|
version = "1.2.0";
|
2021-03-08 15:11:03 +01:00
|
|
|
|
2021-10-08 00:40:18 +02:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit version;
|
|
|
|
crateName = "shticker_book_unwritten";
|
2022-10-15 15:34:16 +02:00
|
|
|
sha256 = "sha256-jI2uL8tMUmjZ5jPkCV2jb98qtKwi9Ti4NVCPfuO3iB4=";
|
2021-03-08 15:11:03 +01:00
|
|
|
};
|
|
|
|
|
2022-10-15 15:34:16 +02:00
|
|
|
cargoSha256 = "sha256-Tney9SG9MZh7AUIT1h/dlgJyRrSPX7mUhfsKD1Rfsfc=";
|
2021-03-08 15:11:03 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
}
|