nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

steam-acf: init at 0.1.0

+25
+23
pkgs/tools/games/steam-acf/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "steam-acf"; 5 + version = "0.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "chisui"; 9 + repo = "acf"; 10 + rev = "v${version}"; 11 + sha256 = "16q3md7cvdz37pqm1sda81rkjf249xbsrlpdl639r06p7f4nqlc2"; 12 + }; 13 + 14 + cargoSha256 = "0fzlvn0sl7613hpsb7ncykmcl53dgl8rzsg317nwkj2w679q4xq6"; 15 + 16 + meta = with lib; { 17 + description = "Tool to convert Steam .acf files to JSON"; 18 + homepage = "https://github.com/chisui/acf"; 19 + license = with licenses; [ mit /* or */ asl20 ]; 20 + maintainers = with maintainers; [ chisui ]; 21 + mainProgram = "acf"; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 29685 29685 29686 29686 steamcmd = steamPackages.steamcmd; 29687 29687 29688 + steam-acf = callPackage ../tools/games/steam-acf { }; 29689 + 29688 29690 protontricks = python3Packages.callPackage ../tools/package-management/protontricks { 29689 29691 winetricks = winetricks.override { 29690 29692 # Remove default build of wine to reduce closure size.