ipe:7.2.27 -> 7.2.30 (#351533)

Diff: https://github.com/otfried/ipe/compare/v7.2.27...v7.2.30
This commit is contained in:
emiliode 2024-10-29 12:47:50 +01:00 committed by GitHub
parent 2be63fc819
commit 105becbce2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
{ lib
, stdenv
, makeDesktopItem
, fetchurl
, fetchFromGitHub
, pkg-config
, copyDesktopItems
, cairo
@ -23,11 +23,13 @@
stdenv.mkDerivation rec {
pname = "ipe";
version = "7.2.27";
version = "7.2.30";
src = fetchurl {
url = "https://github.com/otfried/ipe/releases/download/v${version}/ipe-${version}-src.tar.gz";
sha256 = "sha256-wx/bZy8kB7dpZsz58BeRGdS1BzbrIoafgEmLyFg7wZU=";
src = fetchFromGitHub {
owner = "otfried";
repo = "ipe";
rev = "refs/tags/v${version}";
hash = "sha256-bvwEgEP/cinigixJr8e964sm6secSK+7Ul7WFfwM0gE=";
};
nativeBuildInputs = [ pkg-config copyDesktopItems wrapQtAppsHook ];