confy: 0.7.0 -> 0.7.1
This commit is contained in:
parent
4794ad02fe
commit
3451d89dfe
1 changed files with 11 additions and 10 deletions
|
@ -1,9 +1,9 @@
|
||||||
{ blueprint-compiler
|
{ lib
|
||||||
|
, blueprint-compiler
|
||||||
, desktop-file-utils
|
, desktop-file-utils
|
||||||
, fetchFromSourcehut
|
, fetchFromSourcehut
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, gtk4
|
, gtk4
|
||||||
, lib
|
|
||||||
, libadwaita
|
, libadwaita
|
||||||
, libnotify
|
, libnotify
|
||||||
, meson
|
, meson
|
||||||
|
@ -14,25 +14,25 @@
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "confy";
|
pname = "confy";
|
||||||
version = "0.7.0";
|
version = "0.7.1";
|
||||||
|
|
||||||
src = fetchFromSourcehut {
|
src = fetchFromSourcehut {
|
||||||
owner = "~fabrixxm";
|
owner = "~fabrixxm";
|
||||||
repo = "confy";
|
repo = "confy";
|
||||||
rev = version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-q8WASTNbiBuKb2tPQBmUL9ji60PRAPnYOTYxnUn0MAw=";
|
hash = "sha256-BXQDnRRt2Kuqc1Gwx6Ba6BoEWhICTCsWWkGlBsStyT8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
blueprint-compiler
|
blueprint-compiler
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
|
gobject-introspection
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
pkg-config
|
pkg-config
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
gobject-introspection
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -50,10 +50,11 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://git.sr.ht/~fabrixxm/confy/refs/${finalAttrs.version}";
|
||||||
description = "Conferences schedule viewer";
|
description = "Conferences schedule viewer";
|
||||||
homepage = "https://confy.kirgroup.net/";
|
homepage = "https://confy.kirgroup.net/";
|
||||||
changelog = "https://git.sr.ht/~fabrixxm/confy/refs/${version}";
|
license = licenses.gpl3Plus;
|
||||||
license = licenses.gpl3;
|
mainProgram = "confy";
|
||||||
maintainers = with maintainers; [ michaelgrahamevans ];
|
maintainers = with maintainers; [ michaelgrahamevans ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue