dotfiles/home/rofi-steam-game-list/default.nix

15 lines
320 B
Nix
Raw Normal View History

{ lib, rustPlatform }:
rustPlatform.buildRustPackage {
pname = "rofi-steam-game-list";
version = "0.1";
src = ../rofi-steam-game-list;
cargoLock.lockFile = ../rofi-steam-game-list/Cargo.lock;
meta = with lib; {
description = "A program to list Steam games for Rofi";
license = licenses.bsd0;
};
}