Commit Graph

84 Commits

Author SHA1 Message Date
R. Ryantm
08a1e09965 hexxy: 0-unstable-2024-09-20 -> 0-unstable-2024-09-29 2024-10-05 09:35:28 +00:00
h7x4
8f55b011e0
treewide: add meta.changelog (#346488)
* guix: add meta.changelog

* zile: add meta.changelog

* zoom: add meta.changelog

* zotify: add meta.changelog

* zpaqfranz: add meta.changelog

* zunit: add meta.changelog

* zxwing-cpp: add meta.changelog

* zxpy: add meta.changelog

* zydis: add meta.changelog

* zziplib: add meta.changelog

* j: add meta.changelog

* kyua: add meta.changelog

* json2ts: add meta.changelog

* igir: add meta.changelog

* ios-webkit-debug-proxy: add meta.changelog

* gpaste: add meta.changelog

* polkit_gnome: add meta.changelog

* papers: add meta.changelog

* libmsgraph: add meta.changelog

* quadrapassel: add meta.changelog

* gnome-nibbles: add meta.changelog

* decibels: add meta.changelog

* libgedit-amtk: add meta.changelog

* simple-scan: add meta.changelog

* gnome-klotski: add meta.changelog

* gnome-sound-recorder: add meta.changelog

* gnome-remote-desktop: add meta.changelog

* gnome-robots: add meta.changelog

* gnome-shell-extensions: add meta.changelog

* gnome-panel: add meta.changelog

* gnome-session: add meta.changelog

* gnome-keyring: add meta.changelog

* devhelp: add meta.changelog

* libgnome-keyring: add meta.changelog

* ghex: add meta.changelog

* gnome-connections: add meta.changelog

* lightsoff: add meta.changelog

* gnome-flashback: add meta.changelog

* livi: add meta.changelog

* mutter: add meta.changelog

* hitori: add meta.changelog

* gnome-initial-setup: add meta.changelog

* gnome-bluetooth: add meta.changelog

* gnome-shell: add meta.changelog

* gnome-sudoku: add meta.changelog

* ideamaker: add meta.changelog

* i2p: add meta.changelog

* lms: add meta.changelog

* adwaita-icon-theme: add meta.changelog

* gnome-applets: add meta.changelog

* flac123: add meta.changelog

* flaca: add meta.changelog

* flameshot: add meta.changelog

* flaresolverr: add meta.changelog

* a52dec: add meta.changelog

* hexbinhex: add meta.changelog

* dwl: add meta.changelog

* msolve: add meta.changelog

* jcli: add meta.changelog

* nmap: add meta.changelog

* nmapsi4: add meta.changelog

* labctl: add meta.changelog

* _1oom: add meta.changelog

* libipuz: add meta.changelog

* metacity: add meta.changelog

* sushi: add meta.changelog

* rygel: add meta.changelog

* zenity: add meta.changelog

* crosswords: add meta.changelog

* gnome-mahjongg: add meta.changelog

* alacarte: add meta.changelog

* loupe: add meta.changelog

* cheese: add meta.changelog

* atomix: add meta.changelog

* swell-foop: add meta.changelog

* alfis: add meta.changelog

* aperture: add meta.changelog

* atomic-swap: add meta.changelog

* besu: add meta.changelog

* bisq: add meta.changelog

* bitcoin-abc: add meta.changelog

* bitcoin-knots: add meta.changelog

* bitcd: add meta.changelog

* btcdeb: add meta.changelog

* btcpayserver: add meta.changelog

* 86box: add meta.changelog

* darling: add meta.changelog

* dosbox: add meta.changelog

* firebird-emu: add meta.changelog

* maiko: add meta.changelog

* accerciser: add meta.changelog

* adwaita-icon-theme-legacy: add meta.changelog

* dconf-editor: add meta.changelog

* eog: add meta.changelog

* evolution-data-server: add meta.changelog

* file-roller: add meta.changelog

* four-in-a-row: add meta.changelog

* gdm: add meta.changelog

* geary: add meta.changelog

* gitg: add meta.changelog

* gnome2048: add meta.changelog

* gnome-backgrounds: add meta.changelog

* gnome-text-editor: add meta.changelog

* gnome-tour: add meta.changelog

* gnome-user-share: add meta.changelog

* gxml: add meta.changelog

* tali: add meta.changelog

* totem: add meta.changelog

* mobile-broadband-provider-info: add meta.changelog

* avr: add meta.changelog

* brev-cli: add meta.changelog

* juce: add meta.changelog

* loc: add meta.changelog

* resholve: add meta.changelog

* rpiboot: add meta.changelog

* gerbera: add meta.changelog

* kdocker: add meta.changelog

* pmenu: add meta.changelog

* advancecomp: add meta.changelog

* adriconf: add meta.changelog

* interception-tools: add meta.changelog

* nabi: add meta.changelog

* gorilla-cli: add meta.changelog

* heygpt: add meta.changelog

* 6tunnel: add meta.changelog

* aria2: add meta.changelog

* logmein-hamachi: add meta.changelog

* maphosts: add meta.changelog

* qcal: add meta.changelog

* adreaper: add meta.changelog

* aflplusplus: add meta.changelog

* aide: add meta.changelog

* cameradar: add meta.changelog

* wpscan: add meta.changelog

* aha: add meta.changelog

* xcat: add meta.changelog
2024-10-04 22:35:12 +03:00
Adrian Pistol
f3535797cc hercules: 4.6 -> 4.7 2024-09-30 17:42:20 +02:00
R. Ryantm
2729ae7590 heptabase: 1.39.0 -> 1.40.0 2024-09-29 20:41:16 +00:00
R. Ryantm
d8b8d313e9 hexxy: 0-unstable-2024-02-23 -> 0-unstable-2024-09-20 2024-09-27 07:43:52 +00:00
Pol Dellaiera
668c45925f
hello-go: init (#344180) 2024-09-26 22:05:47 +02:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
aleksana
34d6dfa3ca hello-go: init 2024-09-24 18:39:49 +08:00
Emily
2e00bfd393
nixos: remove environment.noXlibs (#341717) 2024-09-22 16:25:00 +01:00
Aleksana
533ef51d31
heptabase: 1.37.0 -> 1.39.0 (#343148) 2024-09-22 19:11:42 +08:00
nixpkgs-merge-bot[bot]
dc328da31e
hextazy: 0.6 -> 0.7 (#343177) 2024-09-21 14:21:20 +00:00
R. Ryantm
1c1a3fc9b6 hextazy: 0.6 -> 0.7 2024-09-20 04:20:45 +00:00
R. Ryantm
1c08ea950d heptabase: 1.37.0 -> 1.39.0 2024-09-20 00:10:30 +00:00
Niko Cantero
55e6535e4e
maintainers: rename nyanbinary to nyabinary 2024-09-19 15:04:36 -04:00
Matt Moriarity
768db4009e nixos: remove environment.noXlibs 2024-09-15 07:51:45 -06:00
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
R. Ryantm
4b6c49cf6b heptabase: 1.35.5 -> 1.37.0 2024-09-08 11:00:09 +00:00
kirillrdy
59910df84e
heliocron: init at 0.8.1 (#338936) 2024-09-06 12:01:34 +10:00
Sandro
3dfa668ee5
hextazy: 0.4 -> 0.6 (#329376) 2024-09-04 08:58:36 +02:00
TheColorman
353b8c3ad3
heliocron: init at 0.8.1
Command line application for delaying execution of other commands relative to sunrise and sunset

https://github.com/mfreeborn/heliocron
2024-09-03 20:34:34 +10:00
R. Ryantm
4ac2388045 heptabase: 1.35.4 -> 1.35.5 2024-09-01 02:33:54 +00:00
Nick Cao
d1497e1026
heptabase: 1.35.3 -> 1.35.4 (#337470) 2024-08-26 18:52:08 -04:00
Martin Weinelt
9c50de8b57
tree-wide: remove eelco as maintainer from things he no longer maintains (#336287) 2024-08-26 20:39:56 +02:00
R. Ryantm
3353863887 heptabase: 1.35.3 -> 1.35.4 2024-08-26 13:03:35 +00:00
Nick Cao
03cec7ac33
Merge pull request #336459 from r-ryantm/auto-update/hermitcli
hermitcli: 0.39.3 -> 0.40.0
2024-08-22 16:36:18 -04:00
R. Ryantm
425a9e028b hermitcli: 0.39.3 -> 0.40.0 2024-08-22 03:20:58 +00:00
Jade Lovelace
5dfdb09561 tree-wide: remove eelco as maintainer from things he no longer maintains
While preparing this change, I read the git blame on all of the files I
touched. I saw a working lifetime of building this system which we use
every day and love dearly and keep maintained ourselves. I saw commits
from a 14 year range between 2003 to 2017!! I could not be more thankful
for Eelco's work on building large parts of the foundation of nixpkgs
that all of us rely on now.

However, the end date of that range of the files I looked at the blame
on was 2017. I did not see surviving code from any newer date than that.
Looking at the Git logs, Eelco has been working on other things, and
that's totally fine.

However, it means that our maintenance metadata is out of date on a lot
of packages, and *that*'s the reason I am submitting this change. There
are a lot of packages that don't have anyone with their name on them to
be pinged if they need attention, even if they have had recent activity
(although it is never clear if recent activity was just someone fixing
it because ZHF or because the package actually matters to them).
There are a lot of packages with storied history that maybe don't need
to be in the set anymore at all since they have not been touched in
years; or maybe they are simply finished.

Empty maintainer lists should be a sign that we need to figure out who
maintains it or potentially remove it if it has rotted, and allowing the
maintainer list to be empty if it is already not maintained is part of a
healthy repository ecology.

Either way, I would like to have the maintenance metadata not mislead
anyone into sending Eelco emails about packages he doesn't, in practice,
work on anymore. I have not removed his name from everything; there are
some things that he is the upstream for or has worked on more recently,
for instance, like Nix, which I have left alone.
2024-08-21 01:17:45 -07:00
R. Ryantm
cd833e70dc hextazy: 0.4 -> 0.6 2024-08-20 07:45:32 +00:00
Peder Bergebakken Sundt
5c2880b241
Merge pull request #313918 from luftmensch-luftmensch/heptabase_1.32.13
heptabase: init at 1.35.3
2024-08-19 23:02:43 +02:00
luftmensch-luftmensch
35342f72d7
heptabase: init at 1.35.3 2024-08-19 11:11:52 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
Lasne Olivier
6626435296
hextazy: 0.2 -> 0.4, update github owner (#327591) 2024-07-24 17:11:31 +02:00
lassulus
d2f01055af
Merge pull request #324795 from AkechiShiro/init-hextazy
hextazy: init at 0.2
2024-07-13 21:07:49 +02:00
Aleksana
ca53d70f72
Merge pull request #324905 from pwaller/hello-cpp
hello-cpp: init
2024-07-12 18:31:54 +08:00
AkechiShiro
310919e071 hextazy: init at 0.2
Add licence MIT
2024-07-11 23:17:28 +02:00
superherointj
e65e3ed783 hexchat: move from top-level to by-name 2024-07-08 18:22:13 -03:00
Peter Waller
f2603c72fb hello-cpp: init
Proposal: a trivial hello-cpp to complement gnu hello, testing C++ and
cmake infrastructure.

This is intended to assist with testing exotic stdenvs such as the one
used in pkgsLLVM, requiring no additional dependencies to get a quick
test that the compiler and cmake are working as intended as a basic
level.

There does already exist tests.cc-wrapper, but this does not produce any
outputs, and sometimes it is useful to have a quick test that something
builds. It's also useful to be able to inspect the outputs to look at
references and so forth.

Signed-off-by: Peter Waller <p@pwaller.net>
2024-07-07 15:14:12 +01:00
h7x4
7384b9abdc
treewide: set meta.changelog 2024-07-07 15:20:06 +02:00
github-actions[bot]
d77a3adc09
Merge master into staging-next 2024-07-03 00:02:45 +00:00
Doron Behar
32d57df8ac
Merge pull request #320266 from doronbehar/pkg/versionInstallHook
versionCheckHook: init
2024-07-03 01:37:49 +03:00
Doron Behar
42a85f4735 hello: use also versionCheckHook 2024-06-28 18:03:59 +03:00
Martin Weinelt
2096642430
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/os-specific/windows/mingw-w64/default.nix
2024-06-23 19:09:00 +02:00
R. Ryantm
d92045a565 hermitcli: 0.39.2 -> 0.39.3 2024-06-21 13:07:39 +00:00
Martin Weinelt
af4cfc1e0f Merge remote-tracking branch 'origin/staging-next' into staging 2024-06-19 23:28:26 +02:00
Fabian Affolter
0890329602
Merge pull request #320809 from fabaff/hednsextractor
hednsextractor: init at 1.0.7
2024-06-19 12:41:24 +02:00
Martin Weinelt
f822b2ba5c Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/development/python-modules/langsmith/default.nix
- pkgs/development/python-modules/rich-pixels/default.nix
- pkgs/servers/teleport/generic.nix
2024-06-18 20:16:19 +02:00
Fabian Affolter
e82b4a685c hednsextractor: init at 1.0.7
Tool suite for hunting suspicious targets, expose domains and phishing
discovery

https://github.com/HuntDownProject/HEDnsExtractor
2024-06-18 17:37:13 +02:00
Zitrone
51803d6dbc
hentai-at-home: add meta.platforms, fix meta.description & refactor 2024-06-16 21:58:21 +02:00
Zitrone
a922c21a79
hentai-at-home: format with rfc formatter 2024-06-16 21:54:27 +02:00
Zitrone
996fbc60f9
HentaiAtHome: rename to hentai-at-home 2024-06-16 21:49:45 +02:00