depot/third_party/nixpkgs/pkgs/games/shticker-book-unwritten/unwrapped.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

18 lines
444 B
Nix

{ rustPlatform, fetchCrate, pkg-config, openssl }:
rustPlatform.buildRustPackage rec {
pname = "shticker-book-unwritten";
version = "1.2.0";
src = fetchCrate {
inherit version;
crateName = "shticker_book_unwritten";
hash = "sha256-jI2uL8tMUmjZ5jPkCV2jb98qtKwi9Ti4NVCPfuO3iB4=";
};
cargoHash = "sha256-Tney9SG9MZh7AUIT1h/dlgJyRrSPX7mUhfsKD1Rfsfc=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
}