uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
34
pkgs/games/harmonist/default.nix
Normal file
34
pkgs/games/harmonist/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{lib, fetchurl, buildGoPackage}:
|
||||
|
||||
buildGoPackage rec {
|
||||
|
||||
pname = "harmonist";
|
||||
version = "0.4.1";
|
||||
|
||||
goPackagePath = "git.tuxfamily.org/harmonist/harmonist.git";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.tuxfamily.org/harmonist/releases/${pname}-${version}.tar.gz";
|
||||
sha256 = "19abqmzz9nnlnizkskvlkcpahk8lzrl57mgg6dfxn25l55vfznws";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
postInstall = "mv $out/bin/harmonist.git $out/bin/harmonist";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A stealth coffee-break roguelike game";
|
||||
longDescription = ''
|
||||
Harmonist is a stealth coffee-break roguelike game. The game has a heavy
|
||||
focus on tactical positioning, light and noise mechanisms, making use of
|
||||
various terrain types and cones of view for monsters. Aiming for a
|
||||
replayable streamlined experience, the game avoids complex inventory
|
||||
management and character building, relying on items and player
|
||||
adaptability for character progression.
|
||||
'';
|
||||
homepage = "https://harmonist.tuxfamily.org/";
|
||||
license = licenses.isc;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue