mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
harmonist: 0.5.1 -> 0.6.1
Diff: https://codeberg.org/anaseto/harmonist/compare/refs/tags/v0.5.1...0.6.1
This commit is contained in:
parent
510f5d1799
commit
b6541b4c07
1 changed files with 13 additions and 10 deletions
|
@ -1,26 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
fetchurl,
|
||||
buildGoModule,
|
||||
fetchFromGitea,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
buildGoModule (finalAttrs: {
|
||||
pname = "harmonist";
|
||||
version = "0.5.1";
|
||||
version = "0.6.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.tuxfamily.org/harmonist/releases/${pname}-${version}.tar.gz";
|
||||
hash = "sha256-NkUrBvOOs6yctW4CVRpJNcdfdPvUJZp9HaWLS7eO4yE=";
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "anaseto";
|
||||
repo = "harmonist";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-0YHbASLEcQJVYruFuWUYeb0yItmjnlJrZ4jY4h8WYgw=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-0DV32a2LYnfYzg/tqwear9uaaahNUIi0M8uWlXOQ5Ic=";
|
||||
vendorHash = "sha256-pQgqITlUtKkTZTpumWUoYMIB+fKQIqbTIAeTy2UDvdY=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Stealth coffee-break roguelike game";
|
||||
mainProgram = "harmonist";
|
||||
longDescription = ''
|
||||
|
@ -32,7 +35,7 @@ buildGoModule rec {
|
|||
adaptability for character progression.
|
||||
'';
|
||||
homepage = "https://harmonist.tuxfamily.org/";
|
||||
license = licenses.isc;
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue