mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Merge pull request #289489 from danderson/danderson/cursewords
cursewords: init at 1.1
This commit is contained in:
commit
fafa519f83
35
pkgs/by-name/cu/cursewords/package.nix
Normal file
35
pkgs/by-name/cu/cursewords/package.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "cursewords";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "thisisparker";
|
||||
repo = "cursewords";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Ssr15kSdWmyMFFG5uCregrpGQ3rI2cMXqY9+/a3gs84=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3Packages.setuptools
|
||||
python3Packages.wheel
|
||||
];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python3Packages.blessed
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/thisisparker/cursewords";
|
||||
description = "Graphical command line program for solving crossword puzzles in the terminal";
|
||||
mainProgram = "cursewords";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ danderson ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user