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.2.0";
2021-03-08 14:11:03 +00:00
src = fetchCrate {
inherit version;
crateName = "shticker_book_unwritten";
sha256 = "sha256-jI2uL8tMUmjZ5jPkCV2jb98qtKwi9Ti4NVCPfuO3iB4=";
2021-03-08 14:11:03 +00:00
};
cargoSha256 = "sha256-Tney9SG9MZh7AUIT1h/dlgJyRrSPX7mUhfsKD1Rfsfc=";
2021-03-08 14:11:03 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
}