Removed the pointless dev shell.

This commit is contained in:
Werner Kroneman 2024-12-07 12:45:56 +01:00
parent b854de4538
commit 3481f3fefc

View file

@ -8,19 +8,5 @@
packages."x86_64-linux".sharkey = nixpkgs.legacyPackages."x86_64-linux".callPackage ./sharkey.nix { };
packages."x86_64-linux".default = self.packages."x86_64-linux".sharkey;
# Default dev shell with all of sharkey's dependencies + redis and postgresql
devShells."x86_64-linux".default = nixpkgs.legacyPackages."x86_64-linux".mkShell {
inputsFrom = [
self.packages."x86_64-linux".sharkey
];
nativeBuildInputs = with nixpkgs.legacyPackages."x86_64-linux"; [
redis
postgresql
yq
];
};
};
}