mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
xfce.xfce4-notes-plugin: Generate C code with newer Vala
Release tarball dists C code generated by Vala 0.56.14, which is not new enough to support GCC 14. https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin/-/issues/84
This commit is contained in:
parent
23e89b7da8
commit
57975ac596
@ -1,31 +1,24 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, intltool
|
||||
, glib
|
||||
, gtk3
|
||||
, libxfce4ui
|
||||
, libxfce4util
|
||||
, xfce4-panel
|
||||
, xfconf
|
||||
, gitUpdater
|
||||
{
|
||||
mkXfceDerivation,
|
||||
lib,
|
||||
vala,
|
||||
glib,
|
||||
gtk3,
|
||||
libxfce4ui,
|
||||
libxfce4util,
|
||||
xfce4-panel,
|
||||
xfconf,
|
||||
}:
|
||||
|
||||
let
|
||||
mkXfceDerivation {
|
||||
category = "panel-plugins";
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "xfce4-notes-plugin";
|
||||
pname = "xfce4-notes-plugin";
|
||||
version = "1.11.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
||||
sha256 = "sha256-6zgkbesPyJU1+p/5uVPHYs7OIytVhdghD6uau/KCquM=";
|
||||
};
|
||||
sha256 = "sha256-hAGgJIZaUjrizuriW2yX4uOKqRxpZ6BiUhnj4u3BOBA=";
|
||||
odd-unstable = false;
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
intltool
|
||||
vala
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
@ -37,11 +30,6 @@ in stdenv.mkDerivation rec {
|
||||
xfconf
|
||||
];
|
||||
|
||||
passthru.updateScript = gitUpdater {
|
||||
url = "https://gitlab.xfce.org/panel-plugins/${pname}";
|
||||
rev-prefix = "${pname}-";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://docs.xfce.org/panel-plugins/xfce4-notes-plugin";
|
||||
description = "Sticky notes plugin for Xfce panel";
|
||||
|
Loading…
Reference in New Issue
Block a user