3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/shticker-book-unwritten/unwrapped.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
453 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, pkg-config, openssl }:
2021-03-08 14:11:03 +00:00
rustPlatform.buildRustPackage rec {
pname = "shticker-book-unwritten";
version = "1.0.3";
src = fetchCrate {
inherit version;
crateName = "shticker_book_unwritten";
sha256 = "sha256-NQEXLTtotrZQmoYQnhCHIEwSe+fqlcHq5/I6zTHwLvc=";
2021-03-08 14:11:03 +00:00
};
cargoSha256 = "sha256-SniyLp/4R0MkJYQmW3RFvOFeBKTvRlSzEI5Y+ELHfy8=";
2021-03-08 14:11:03 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
}