diff --git a/outputs.nix b/outputs.nix index decc855..b602aac 100644 --- a/outputs.nix +++ b/outputs.nix @@ -48,11 +48,8 @@ type = "app"; program = "${selfPkgs.recipemd}/bin/recipemd"; }; - devShell = pkgs.callPackage ./shell.nix { - deploy = selfPkgs.deploy; - }; + devShell = pkgs.callPackage ./shell.nix { }; packages = flake-utils.lib.flattenTree { - deploy = pkgs.callPackage ./pkgs/deploy.nix { }; recipemd = pkgs.python3Packages.toPythonApplication python3Packages.recipemd; }; })) // { diff --git a/pkgs/deploy.nix b/pkgs/deploy.nix deleted file mode 100644 index 9771e79..0000000 --- a/pkgs/deploy.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ stdenv -, lib -, git -, openssh -, bash -}: -stdenv.mkDerivation rec { - name = "dadada-deploy"; - version = "0.1.1"; - - src = ../utils; - - buildInputs = [ - git - openssh - bash - ]; - - installPhase = '' - mkdir -p $out/bin - for script in \ - deploy \ - gen-config - do - install $script $out/bin/ - done - ''; - meta = with lib; { - description = "deploy scripts"; - license = licenses.publicDomain; - platforms = platforms.unix; - maintainers = [ "dadada" ]; - }; -} diff --git a/shell.nix b/shell.nix index 37a2389..805620f 100644 --- a/shell.nix +++ b/shell.nix @@ -1,9 +1,7 @@ { mkShell -, deploy }: mkShell { buildInputs = [ - deploy ]; }