vpn?
This commit is contained in:
parent
36c07aaa2a
commit
d9c5650091
8 changed files with 102 additions and 37 deletions
35
pkgs/beyond-all-reason.nix
Normal file
35
pkgs/beyond-all-reason.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ pkgs, ... }: pkgs.appimageTools.wrapType2 rec {
|
||||
pname = "beyond-all-reason";
|
||||
version = "1.2988.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/beyond-all-reason/BYAR-Chobby/releases/download/v${version}/Beyond-All-Reason-${version}.AppImage";
|
||||
hash = "sha256-ZJW5BdxxqyrM2TJTO0SBp4BXt3ILyi77EZx73X8hqJE=";
|
||||
};
|
||||
|
||||
extraPkgs = pkgs: with pkgs; [
|
||||
SDL2
|
||||
openal
|
||||
fuse3
|
||||
gtk3
|
||||
nss
|
||||
binutils
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgs.copyDesktopItems
|
||||
];
|
||||
|
||||
desktopItems = [
|
||||
(pkgs.makeDesktopItem {
|
||||
name = "Beyond All Reason";
|
||||
exec = pname;
|
||||
icon = pname;
|
||||
desktopName = pname;
|
||||
comment = "Open Source RTS game";
|
||||
categories = [
|
||||
"Game"
|
||||
];
|
||||
})
|
||||
];
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs ? (import ../nixpkgs.nix) { }, ... }: rec {
|
||||
transmission-exporter = import ./transmission-exporter.nix { inherit pkgs; };
|
||||
plex-exporter = import ./plex-exporter.nix { inherit pkgs; };
|
||||
beyond-all-reason = import ./beyond-all-reason.nix { inherit pkgs; };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue