Skip to content

Commit

Permalink
textpieces: init at 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zendo committed Oct 24, 2022
1 parent 946774a commit 573a1fc
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
76 changes: 76 additions & 0 deletions pkgs/tools/text/textpieces/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{ lib
, stdenv
, fetchFromGitHub
, python3
, meson
, ninja
, pkg-config
, vala
, glib
, gtk4
, libgee
, libadwaita
, json-glib
, blueprint-compiler
, gtksourceview5
, gobject-introspection
, wrapGAppsHook4
, appstream-glib
, desktop-file-utils
}:

let
pythonEnv = python3.withPackages ( ps: with ps; [ pyyaml ] );
in
stdenv.mkDerivation rec {
pname = "textpieces";
version = "3.3.0";

src = fetchFromGitHub {
owner = "liferooter";
repo = pname;
rev = "v${version}";
hash = "sha256-QLPvK2kiOGf8XN2aors6cZtl9d9uqsxcho2A1kISO5Y=";
};

nativeBuildInputs = [
meson
ninja
pkg-config
pythonEnv
vala
blueprint-compiler
wrapGAppsHook4
appstream-glib
desktop-file-utils
];

buildInputs = [
glib
gtk4
libadwaita
libgee
json-glib
gtksourceview5
gobject-introspection
];

runtimeDependencies = [
pythonEnv
];

postPatch = ''
chmod +x build-aux/meson/postinstall.py
patchShebangs build-aux/meson/postinstall.py
patchShebangs scripts/
'';

meta = with lib; {
description = "Quick text processing";
longDescription = "A small tool for quick text transformations such as checksums, encoding, decoding and so on.";
homepage = "https://github.com/liferooter/textpieces";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ zendo ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31911,6 +31911,8 @@ with pkgs;

terminal-notifier = callPackage ../applications/misc/terminal-notifier {};

textpieces = callPackage ../tools/text/textpieces { };

textplots = callPackage ../tools/graphics/textplots { };

texture-synthesis = callPackage ../tools/graphics/texture-synthesis { };
Expand Down

0 comments on commit 573a1fc

Please sign in to comment.