aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 16d8803440693806aa3aceb88635e6a9e4933f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# EuAndreh's package-repository

Personal package repository for a variety of operating systems, mainly for 
packaging personal projects of mine and make it available for users and 
packagers.

See the list of packages [online].

[online]: https://euandre.org/s/package-repository/paku.html


## How to add this to different OSes


### Guix

Add this channel to your `~/.config/guix/channels.scm`:

```scheme
(cons*
 (channel
  (name 'org-euandre)
  (url "git://euandre.org/package-repository")
  (branch "main")
  (introduction
   (make-channel-introduction
    "d749e053e6db365069cb9b2ef47a78b06f9e7361"
    (openpgp-fingerprint
     "5BDA E9B8 B2F6 C6BC BB0D  6CE5 81F9 0EC3 CD35 6060"))))
 %default-channels)
```

See also the Guix manual for usage on channels: <https://guix.gnu.org/manual/en/guix.html#Channels>


### NixOS

Adding the overlay to your `/etc/nixos/configuration.nix`:

```nix
  nixpkgs = {
    overlays = [
      (import (fetchTarball {
        url = "https://euandre.org/git/package-repository/snapshot/package-repository-main.tar.xz";
      }) { inherit pkgs; })
    ];
  };
```


### Debian

```shell
$ wget -qO- https://euandre.org/s/package-repository/debian/public-key.asc | sudo tee /etc/apt/trusted.gpg.d/euandre.org.asc
$ echo 'deb https://euandre.org/s/package-repository/debian ./' | sudo tee -a /etc/apt/sources.list
```


### Homebrew

```shell
$ brew tap --force-auto-update org/euandre https://euandre.org/git/package-repository/
```


## Contributing

For running the extra development-only checks, run:

```shell
$ make dev-check
```

and for generating the documentation HTML and website, run:

```shell
$ make public
```

Send contributions to the [mailing list] via
[`git send-email`](https://git-send-email.io/).


## Links

- [homepage](https://euandre.org/s/package-repository/en/)
- [source code](https://euandre.org/git/package-repository/)
- [bug tracking](https://euandre.org/s/package-repository/TODOs.html)
- [mailing list]
- [CI logs](https://euandre.org/s/package-repository/ci.html)
- [CHANGELOG](https://euandre.org/s/package-repository/en/CHANGELOG.html)

[mailing list]: https://lists.sr.ht/~euandreh/public-inbox?search=%5Bpackage-repository%5D


## License

The code is licensed under
[GNU Affero General Public License v3.0 or later][AGPL-3.0-or-later]
(AGPL-3.0-or-later).

[AGPL-3.0-or-later]: https://euandre.org/git/package-repository/tree/COPYING