Skip to content

Commit

Permalink
ipe:7.2.27 -> 7.2.30 (NixOS#351533)
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliode authored Oct 29, 2024
1 parent 2be63fc commit 105becb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/applications/graphics/ipe/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib
, stdenv
, makeDesktopItem
, fetchurl
, fetchFromGitHub
, pkg-config
, copyDesktopItems
, cairo
Expand All @@ -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 ];
Expand Down

0 comments on commit 105becb

Please sign in to comment.