aboutsummaryrefslogtreecommitdiff
path: root/flakes
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2021-01-22 00:48:36 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2021-01-22 00:58:16 +0100
commitce95026934c4ea8c647365f68eb195459fcdff08 (patch)
tree2eb966f873a701e01c65cc6e7189261381be7532 /flakes
parentded643e14096a7cb166c78dd961cf68fb4ddb0cf (diff)
downloadNix-ce95026934c4ea8c647365f68eb195459fcdff08.tar.gz
Nix-ce95026934c4ea8c647365f68eb195459fcdff08.tar.zst
Nix-ce95026934c4ea8c647365f68eb195459fcdff08.zip
Upgrade syden peertube to flake
Diffstat (limited to 'flakes')
-rw-r--r--flakes/private/peertube/flake.lock98
-rw-r--r--flakes/private/peertube/flake.nix19
2 files changed, 117 insertions, 0 deletions
diff --git a/flakes/private/peertube/flake.lock b/flakes/private/peertube/flake.lock
new file mode 100644
index 0000000..4f335c9
--- /dev/null
+++ b/flakes/private/peertube/flake.lock
@@ -0,0 +1,98 @@
1{
2 "nodes": {
3 "flake-utils": {
4 "locked": {
5 "lastModified": 1610051610,
6 "narHash": "sha256-U9rPz/usA1/Aohhk7Cmc2gBrEEKRzcW4nwPWMPwja4Y=",
7 "owner": "numtide",
8 "repo": "flake-utils",
9 "rev": "3982c9903e93927c2164caa727cd3f6a0e6d14cc",
10 "type": "github"
11 },
12 "original": {
13 "owner": "numtide",
14 "repo": "flake-utils",
15 "type": "github"
16 }
17 },
18 "myuids": {
19 "locked": {
20 "dir": "flakes/myuids",
21 "lastModified": 1611091761,
22 "narHash": "sha256-fE3FBeUxVaMezKjEpepdQW9apOza+0AfBALFhaaD0VA=",
23 "ref": "master",
24 "rev": "23f9fdf03a6673dbe334ae33be4f498cc4753191",
25 "revCount": 802,
26 "type": "git",
27 "url": "https://git.immae.eu/perso/Immae/Config/Nix.git"
28 },
29 "original": {
30 "dir": "flakes/myuids",
31 "type": "git",
32 "url": "https://git.immae.eu/perso/Immae/Config/Nix.git"
33 }
34 },
35 "nixpkgs": {
36 "locked": {
37 "lastModified": 1611097871,
38 "narHash": "sha256-Q6bUkno5JNt0OoyXThFDrKArFBp/GryvJhwEgVzGSuk=",
39 "owner": "NixOS",
40 "repo": "nixpkgs",
41 "rev": "31f5dd3f3655fbedac19f64f77844aa5ed79501c",
42 "type": "github"
43 },
44 "original": {
45 "owner": "NixOS",
46 "repo": "nixpkgs",
47 "type": "github"
48 }
49 },
50 "peertube": {
51 "flake": false,
52 "locked": {
53 "lastModified": 1611184594,
54 "narHash": "sha256-1N59Dmo9zny+bZWRPiR7fXConECAw9OFcVIWMp2wois=",
55 "ref": "gitolite_local/syden",
56 "rev": "f49b8d9b697f098490e81ce0afd889ba37dcb2f3",
57 "revCount": 6316,
58 "type": "git",
59 "url": "https://git.immae.eu/github/Chocobozzz/PeerTube.git"
60 },
61 "original": {
62 "ref": "gitolite_local/syden",
63 "type": "git",
64 "url": "https://git.immae.eu/github/Chocobozzz/PeerTube.git"
65 }
66 },
67 "peertube_syden": {
68 "inputs": {
69 "flake-utils": "flake-utils",
70 "myuids": "myuids",
71 "nixpkgs": "nixpkgs",
72 "peertube": "peertube"
73 },
74 "locked": {
75 "dir": "flakes/peertube",
76 "lastModified": 1611270106,
77 "narHash": "sha256-VKDczZDM9A2dGoSAEN6rUDxvLKYUuoDMefQc7fabvXo=",
78 "ref": "master",
79 "rev": "1279eb87299a44167c4ed4a10a9088d58654b5d3",
80 "revCount": 805,
81 "type": "git",
82 "url": "https://git.immae.eu/perso/Immae/Config/Nix.git"
83 },
84 "original": {
85 "dir": "flakes/peertube",
86 "type": "git",
87 "url": "https://git.immae.eu/perso/Immae/Config/Nix.git"
88 }
89 },
90 "root": {
91 "inputs": {
92 "peertube_syden": "peertube_syden"
93 }
94 }
95 },
96 "root": "root",
97 "version": 7
98}
diff --git a/flakes/private/peertube/flake.nix b/flakes/private/peertube/flake.nix
new file mode 100644
index 0000000..9e56d5b
--- /dev/null
+++ b/flakes/private/peertube/flake.nix
@@ -0,0 +1,19 @@
1{
2 description = "Patched peertube";
3 inputs.peertube_syden = {
4 url = "https://git.immae.eu/perso/Immae/Config/Nix.git";
5 type = "git";
6 dir = "flakes/peertube";
7 inputs.peertube = {
8 url = "https://git.immae.eu/github/Chocobozzz/PeerTube.git";
9 ref = "gitolite_local/syden";
10 flake = false;
11 type = "git";
12 };
13 };
14
15 outputs = { self, peertube_syden }: {
16 packages.x86_64-linux.peertube_syden = peertube_syden.packages.x86_64-linux.peertube_syden;
17 defaultPackage.x86_64-linux = peertube_syden.defaultPackage.x86_64-linux;
18 };
19}