Compare commits
3 commits
1b91e430a2
...
de2c484d2e
Author | SHA1 | Date | |
---|---|---|---|
de2c484d2e | |||
c4886b737e | |||
a7b12d2e18 |
4 changed files with 40 additions and 4 deletions
29
packages/skaffold.nix
Normal file
29
packages/skaffold.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
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,6 +16,8 @@ in {
|
||||||
|
|
||||||
podman-compose
|
podman-compose
|
||||||
fuse-overlayfs
|
fuse-overlayfs
|
||||||
|
|
||||||
|
(import ../packages/skaffold.nix)
|
||||||
];
|
];
|
||||||
|
|
||||||
virtualisation.podman = {
|
virtualisation.podman = {
|
||||||
|
|
|
@ -100,6 +100,7 @@ in {
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
xdg_utils
|
xdg_utils
|
||||||
xfce.thunar
|
xfce.thunar
|
||||||
|
xfce.thunar-volman
|
||||||
unstable.keepassxc
|
unstable.keepassxc
|
||||||
(
|
(
|
||||||
pkgs.writeTextFile {
|
pkgs.writeTextFile {
|
||||||
|
@ -127,6 +128,8 @@ in {
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.gvfs.enable = true;
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,12 @@ in {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
gnumake
|
gnumake
|
||||||
go
|
go
|
||||||
python37
|
python38
|
||||||
python37Packages.pyls-black
|
python38Packages.pyls-black
|
||||||
python37Packages.pyls-isort
|
python38Packages.pyls-isort
|
||||||
python37Packages.pyls-mypy
|
python38Packages.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