Skip to content

Commit

Permalink
Add e2eirc
Browse files Browse the repository at this point in the history
  • Loading branch information
42LoCo42 committed Dec 14, 2023
1 parent 50cbdd5 commit b3905a9
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
boomer = pkgs.callPackage ./packages/boomer.nix { inherit nimblePkgs; };
capnp-go = pkgs.callPackage ./packages/capnp-go.nix { };
certbot-dns-duckdns = pkgs.callPackage ./packages/certbot-dns-duckdns.nix { };
e2eirc = pkgs.callPackage ./packages/e2eirc.nix { };
flameshot-fixed = pkgs.callPackage ./packages/flameshot-fixed.nix { };
fusepod = pkgs.callPackage ./packages/fusepod.nix { };
gtk4-layer-shell = pkgs.callPackage ./packages/gtk4-layer-shell.nix { };
Expand Down
14 changes: 14 additions & 0 deletions packages/e2eirc.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{ buildGoModule
, fetchFromGitHub
}: buildGoModule rec {
pname = "e2eirc";
version = "0e3198a";
src = fetchFromGitHub {
owner = "novus0rdo";
repo = pname;
rev = version;
hash = "sha256-qaLNd40NUIi4ox4jIkzkotUBl0NUuR/0UsmhIOnKaz8=";
};
patches = [ ./e2eirc.patch ];
vendorHash = "sha256-TUjjxOsP7tmIaT7M9alaz1Of4uD+kda1Z9qUSdSwf7s=";
}
33 changes: 33 additions & 0 deletions packages/e2eirc.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..b7798bd
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,13 @@
+module github.com/novus0rdo/e2eirc
+
+go 1.21
+
+require (
+ github.com/Novus0rdo/e2eirc v0.0.0-20171031184345-0e3198a20cd6
+ golang.org/x/crypto v0.16.0
+)
+
+require (
+ golang.org/x/sys v0.15.0 // indirect
+ golang.org/x/term v0.15.0 // indirect
+)
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..e95f70c
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,8 @@
+github.com/Novus0rdo/e2eirc v0.0.0-20171031184345-0e3198a20cd6 h1:DkKHS9nPweuOR9aS2aOLwJWqAQVGELLyvP7ByOp2ao0=
+github.com/Novus0rdo/e2eirc v0.0.0-20171031184345-0e3198a20cd6/go.mod h1:bF+aVdwKfkdParV9nC/JqtfOHUxEKLgjZxndMt3PFfA=
+golang.org/x/crypto v0.16.0 h1:mMMrFzRSCF0GvB7Ne27XVtVAaXLrPmgPC7/v0tkwHaY=
+golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
+golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc=
+golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4=
+golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0=

0 comments on commit b3905a9

Please sign in to comment.