mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, gobject-introspection
|
|
, wrapGAppsHook4
|
|
, desktop-file-utils
|
|
, libadwaita
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ascii-draw";
|
|
version = "0.4.0";
|
|
pyproject = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nokse22";
|
|
repo = "ascii-draw";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-lBlIZrjzJo9R6KnzUSbqz5c/6UbuTv/pQu5Sans37Hc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gobject-introspection
|
|
wrapGAppsHook4
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3
|
|
pyfiglet
|
|
emoji
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = {
|
|
description = "Draw diagrams or anything using only ASCII";
|
|
homepage = "https://github.com/Nokse22/ascii-draw";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "ascii-draw";
|
|
maintainers = with lib.maintainers; [ aleksana ];
|
|
# gnulib bindtextdomain is missing on various other unix platforms
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|