-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
192 changed files
with
3,370 additions
and
1,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2503,6 +2503,12 @@ | |
matrix = "@cawilliamson:nixos.dev"; | ||
name = "Christopher A. Williamson"; | ||
}; | ||
cbleslie = { | ||
email = "[email protected]"; | ||
github = "cbleslie"; | ||
githubId = 500963; | ||
name = "C.B.Leslie"; | ||
}; | ||
cbley = { | ||
email = "[email protected]"; | ||
github = "avdv"; | ||
|
@@ -11297,6 +11303,15 @@ | |
githubId = 111265; | ||
name = "Ozan Sener"; | ||
}; | ||
ostrolucky = { | ||
email = "[email protected]"; | ||
github = "ostrolucky"; | ||
githubId = 496233; | ||
name = "Gabriel Ostrolucký"; | ||
keys = [{ | ||
fingerprint = "6611 22A7 B778 6E4A E99A 9D6E C79A D015 19EF B134"; | ||
}]; | ||
}; | ||
otavio = { | ||
email = "[email protected]"; | ||
github = "otavio"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,5 +49,5 @@ in | |
}) | ||
{} | ||
[ | ||
"0_8_0" | ||
"0_8" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ appstream-glib | ||
, desktop-file-utils | ||
, fetchurl | ||
, gobject-introspection | ||
, gtk3 | ||
, lib | ||
, libnotify | ||
, libhandy | ||
, meson | ||
, ninja | ||
, pkg-config | ||
, python3 | ||
, stdenv | ||
, wrapGAppsHook | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "confy"; | ||
version = "0.6.4"; | ||
|
||
src = fetchurl { | ||
url = "https://git.sr.ht/~fabrixxm/confy/archive/${version}.tar.gz"; | ||
sha256 = "0v74pdyihj7r9gb3k2rkvbphan27ajlvycscd8xzrnsv74lcmbpm"; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
desktop-file-utils | ||
meson | ||
ninja | ||
pkg-config | ||
wrapGAppsHook | ||
]; | ||
|
||
buildInputs = [ | ||
gobject-introspection | ||
gtk3 | ||
libhandy | ||
libnotify | ||
(python3.withPackages (ps: with ps; [ | ||
icalendar | ||
pygobject3 | ||
])) | ||
]; | ||
|
||
postPatch = '' | ||
# Remove executable bits so that meson runs the script with our Python interpreter | ||
chmod -x build-aux/meson/postinstall.py | ||
''; | ||
|
||
meta = with lib; { | ||
description = "Conferences schedule viewer"; | ||
homepage = "https://confy.kirgroup.net/"; | ||
changelog = "https://git.sr.ht/~fabrixxm/confy/refs/${version}"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ michaelgrahamevans ]; | ||
}; | ||
} |
Oops, something went wrong.