mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
powwow: init at 1.2.23
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
parent
247b88d510
commit
13d6a447dc
1 changed files with 29 additions and 0 deletions
29
pkgs/by-name/po/powwow/package.nix
Normal file
29
pkgs/by-name/po/powwow/package.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
ncurses,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "powwow";
|
||||
version = "1.2.23";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.hoopajoo.net/static/projects/powwow-${finalAttrs.version}.tar.gz";
|
||||
hash = "sha256-pnJu7zoEHcswJJo756pOBL9mF9jaQij0VYDcG5I0dPI=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ncurses
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Multi-user Dungeon Client";
|
||||
homepage = "https://www.hoopajoo.net/projects/powwow.html";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
||||
mainProgram = "powwow";
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue