diff --git a/default.nix b/default.nix index 0414aab2e31a786d113bfcf68c15a87f2635704a..2d03df03bcbd697426c7ea57f28b9b70aba54ab6 100644 --- a/default.nix +++ b/default.nix @@ -14,8 +14,6 @@ # Personal projects tmpl = pkgs.callPackage ./pkgs/tmpl {}; # This file describes your repository contents. -# commands such as: -# This file describes your repository contents. # and optionally the special attributes `lib`, `modules` and `overlays`. # Other projects prospect-mail = pkgs.callPackage ./pkgs/prospect-mail {}; diff --git a/pkgs/imp/default.nix b/pkgs/imp/default.nix deleted file mode 100644 index 32063da0e0df1457591bed42390644da996ba899..0000000000000000000000000000000000000000 --- a/pkgs/imp/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - buildGoModule, - fetchFromGitea, - lib, - ... -}: -buildGoModule rec { - pname = "imp"; - version = "0.0.4"; - - src = fetchFromGitea { - domain = "git.jojodev.com"; - owner = "jolheiser"; - repo = "imp"; - rev = "v${version}"; - sha256 = "sha256-20xDL0M/ZMV9dX4zBxR9vPawub4zONnuXwC8Hxml9ow="; - }; - - vendorSha256 = "sha256-1az96BTJrkj6tigca5YNwEB9fX+BZX2A+aBttOQfo9g="; - - ldflags = ["-s" "-w" "-X=main.Version=${version}"]; - - meta = with lib; { - description = "Opinionated import formatter"; - homepage = "https://git.jojodev.com/jolheiser/imp"; - license = licenses.mit; - }; -}