Skip to content

Commit

Permalink
repak: init at 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
florensie committed Aug 29, 2024
1 parent ccd8cd8 commit 9699375
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/re/repak/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib, fetchFromGitHub, rustPlatform, nix-update-script }:

rustPlatform.buildRustPackage rec {
pname = "repak";
version = "0.2.2";

src = fetchFromGitHub {
owner = "trumank";
repo = pname;
rev = "v${version}";
hash = "sha256-nl05EsR52YFSR9Id3zFynhrBIvaqVwUOdjPlSp19Gcc=";
};

cargoHash = "sha256-4RA3Nv4Wes3etrnZSnHRjJ3ukA6stJXDj3ftaCxGwuY=";

passthru.updateScript = nix-update-script { };

meta = with lib; {
description = "Unreal Engine .pak file library and CLI in rust";
homepage = "https://github.com/trumank/repak";
changelog = "https://github.com/trumank/repak/releases/tag/v${version}";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ florensie ];
mainProgram = "repak";
};
}

0 comments on commit 9699375

Please sign in to comment.