Unverified Commit ba112ea5 authored by Donovan Glover's avatar Donovan Glover Committed by GitHub
Browse files

textpieces: 4.0.6 -> 4.1.0 (#337865)

parents 4aa61ccc 59f72337
Loading
Loading
Loading
Loading
+176 −195

File changed.

Preview size limit exceeded, changes collapsed.

+33 −22
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitLab
, meson
, ninja
, pkg-config
, cargo
, rustc
, rustPlatform
, blueprint-compiler
, glib
, gtk4
, libadwaita
, gtksourceview5
, wrapGAppsHook4
, desktop-file-utils
{
  lib,
  stdenv,
  fetchFromGitLab,
  meson,
  ninja,
  pkg-config,
  cargo,
  rustc,
  rustPlatform,
  blueprint-compiler,
  glib,
  gtk4,
  libadwaita,
  gtksourceview5,
  wrapGAppsHook4,
  desktop-file-utils,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "textpieces";
  version = "4.0.6";
  version = "4.1.0";

  src = fetchFromGitLab {
    owner = "liferooter";
    repo = "textpieces";
    rev = "v${finalAttrs.version}";
    hash = "sha256-6kbGvCiaoOY+pwSmaDn1N/rbTBzEehNi/j+RI05nn6o=";
    hash = "sha256-0bc2Q3k08ZItRH7teQCv7uQyj4Rig6LtZmO5Vu48vxo=";
  };

  cargoDeps = rustPlatform.importCargoLock {
    lockFile = ./Cargo.lock;
    outputHashes = {
      "textpieces-core-1.0.0" = "sha256-HaLkL2HhH1khwsSdH64pZYtJ/WG+MLiEQPScDte/PAg=";
      "textpieces-core-1.1.2" = "sha256-fAATzugZ4kpUqHx8H4yuNH9Weeubkp8eAHAe94rMBmA=";
    };
  };

@@ -55,11 +56,21 @@ stdenv.mkDerivation (finalAttrs: {

  meta = {
    description = "Swiss knife of text processing";
    longDescription = "A small tool for quick text transformations such as checksums, encoding, decoding and so on.";
    longDescription = ''
      A small tool for quick text transformations such as
      checksums, encoding, decoding and so on.
    '';
    homepage = "https://gitlab.com/liferooter/textpieces";
    mainProgram = "textpieces";
    license = lib.licenses.gpl3Plus;
    license = with lib.licenses; [
      gpl3Plus
      # and
      cc0
    ];
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ zendo ];
    maintainers = with lib.maintainers; [
      zendo
      aleksana
    ];
  };
})