summary refs log tree commit diff
path: root/pkgs/games/shticker-book-unwritten/unwrapped.nix
blob: a4b25d94e8f8d29d551c785f3f05d34933c975af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, rustPlatform, fetchCrate, pkg-config, openssl }:

rustPlatform.buildRustPackage rec {
  pname = "shticker-book-unwritten";
  version = "1.0.3";

  src = fetchCrate {
    inherit version;
    crateName = "shticker_book_unwritten";
    sha256 = "sha256-NQEXLTtotrZQmoYQnhCHIEwSe+fqlcHq5/I6zTHwLvc=";
  };

  cargoSha256 = "sha256-SniyLp/4R0MkJYQmW3RFvOFeBKTvRlSzEI5Y+ELHfy8=";

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ openssl ];
}