Compare commits
No commits in common. "de2c484d2e5aa64c410add5a22de4765175aecbb" and "1b91e430a2293b123973a1e16ac0706b23566371" have entirely different histories.
de2c484d2e
...
1b91e430a2
4 changed files with 4 additions and 40 deletions
|
@ -1,29 +0,0 @@
|
||||||
with import <nixpkgs> {};
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "skaffold";
|
|
||||||
version = "1.17.0";
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/GoogleContainerTools/skaffold/releases/download/v1.17.0/skaffold-linux-amd64";
|
|
||||||
sha256 = "734a23dfe90b01feb927c44168c93b72afd05d8b978319b4670dc7e6a5e887fe";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
autoPatchelfHook
|
|
||||||
];
|
|
||||||
|
|
||||||
unpackPhase = ''
|
|
||||||
cp $src skaffold
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
install -m 755 -D skaffold $out/bin/skaffold
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = "https://skaffold.dev";
|
|
||||||
description = "skaffold";
|
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ foosinn ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -16,8 +16,6 @@ in {
|
||||||
|
|
||||||
podman-compose
|
podman-compose
|
||||||
fuse-overlayfs
|
fuse-overlayfs
|
||||||
|
|
||||||
(import ../packages/skaffold.nix)
|
|
||||||
];
|
];
|
||||||
|
|
||||||
virtualisation.podman = {
|
virtualisation.podman = {
|
||||||
|
|
|
@ -100,7 +100,6 @@ in {
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
xdg_utils
|
xdg_utils
|
||||||
xfce.thunar
|
xfce.thunar
|
||||||
xfce.thunar-volman
|
|
||||||
unstable.keepassxc
|
unstable.keepassxc
|
||||||
(
|
(
|
||||||
pkgs.writeTextFile {
|
pkgs.writeTextFile {
|
||||||
|
@ -128,8 +127,6 @@ in {
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
services.gvfs.enable = true;
|
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -6,12 +6,10 @@ in {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
gnumake
|
gnumake
|
||||||
go
|
go
|
||||||
python38
|
python37
|
||||||
python38Packages.pyls-black
|
python37Packages.pyls-black
|
||||||
python38Packages.pyls-isort
|
python37Packages.pyls-isort
|
||||||
python38Packages.pyls-mypy
|
python37Packages.pyls-mypy
|
||||||
python38Packages.python-language-server
|
|
||||||
python38Packages.requests
|
|
||||||
rustup
|
rustup
|
||||||
unstable.golangci-lint
|
unstable.golangci-lint
|
||||||
unstable.gopls
|
unstable.gopls
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue