aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 81bf4ac17ec320e672ec11332eeca1ff2482cd47 (about) (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
# 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 in [`paku.json`][paku.json].

[paku.json]: https://git.euandreh.xyz/package-repository/tree/paku.json

## How to add this to different OSes
### Guix

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

```scheme
(cons*
 (channel
  (name 'xyz-euandreh)
  (url "git://euandreh.xyz/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://git.euandreh.xyz/package-repository/snapshot/package-repository-main.tar.gz";
      }) { inherit pkgs; })
    ];
  };
```

<!--
### Debian

```shell
$ wget -O- https://package-repository.euandreh.xyz/EuAndreh.key | sudo apt-key add -
$ sudo apt-add-repository 'deb https://package-repository.euandreh.xyz/debian/ stable main'
```
-->

## LICENSE

Packaging code licensed under AGPLv3+.