feat: use nixfmt

This commit is contained in:
Oskar Manhart
2024-09-09 10:31:41 +02:00
parent b0f2830224
commit 7d5cce374c
4 changed files with 122 additions and 102 deletions

View File

@@ -1,5 +1,6 @@
ci:
autoupdate_branch: "rewrite"
skip: [nixfmt]
repos:
- repo: https://github.com/Lucas-C/pre-commit-hooks
@@ -48,3 +49,8 @@ repos:
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: https://github.com/NixOS/nixfmt
rev: d0c0cda4fe6b7ae2b9aa37f3ee15e6412573eb01
hooks:
- id: nixfmt

View File

@@ -6,16 +6,19 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
outputs =
{
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system: let
system:
let
pkgs = import nixpkgs { inherit system; };
in {
formatter = pkgs.alejandra;
in
{
formatter = pkgs.nixfmt-rfc-style;
packages.winapps = pkgs.callPackage ./packages/winapps { };
packages.winapps-launcher = pkgs.callPackage ./packages/winapps-launcher { };

View File

@@ -7,7 +7,8 @@
callPackage,
yad,
...
}: let
}:
let
rev = "eaa660d39bf3f49b136c98c87c35e3e12f118f8f";
hash = "sha256-7lkx/O4dOdVqAPX6s2IkkM6Ggbzmz9sm++20BBeoUQ4=";
in
@@ -23,7 +24,10 @@ in
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [yad (callPackage ../winapps {})];
buildInputs = [
yad
(callPackage ../winapps { })
];
installPhase = ''
runHook preInstall

View File

@@ -9,7 +9,8 @@
netcat-gnu,
iproute2,
...
}: let
}:
let
rev = "7bae17e3a3607e6b93c7cfc4155dfbdca7bba005";
hash = "sha256-PP4POMwHCsAdiCxZkjXlON84F0Mg3Pd5bHEI6tC+Sds=";
in
@@ -25,24 +26,25 @@ in
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [freerdp3 libnotify dialog netcat-gnu iproute2];
buildInputs = [
freerdp3
libnotify
dialog
netcat-gnu
iproute2
];
installPhase = ''
runHook preInstall
patchShebangs install/inquirer.sh
mkdir -p $out
mkdir -p $out/src
cp -r ./ $out/src/
install -m755 -D bin/winapps $out/bin/winapps
install -m755 -D setup.sh $out/bin/winapps-setup
patchShebangs install/inquirer.sh
sed -E -i \
-e 's/grep -q -E "\\blibvirt\\b"/grep -q -E "\\blibvirtd\\b"/' \
$out/bin/winapps
bin/winapps
sed -E -i \
-e 's/grep -q -E "\\blibvirt\\b"/grep -q -E "\\blibvirtd\\b"/' \
@@ -54,7 +56,12 @@ in
-e 's|\$SUDO ln -s "./bin/winapps" "\$\{BIN_PATH\}/winapps"||' \
-e 's|\$SUDO ln -s "./setup.sh" "\$\{BIN_PATH\}/winapps-setup"||' \
-e "s|\$\{BIN_PATH\}/winapps|$out/bin/winapps|" \
$out/bin/winapps-setup
./setup.sh
cp -r ./ $out/src/
install -m755 -D bin/winapps $out/bin/winapps
install -m755 -D setup.sh $out/bin/winapps-setup
for f in winapps-setup winapps; do
wrapProgram $out/bin/$f \
@@ -70,6 +77,6 @@ in
description = "Run Windows applications (including Microsoft 365 and Adobe Creative Cloud) on GNU/Linux with KDE, GNOME or XFCE, integrated seamlessly as if they were native to the OS. Wayland is currently unsupported.";
mainProgram = "winapps";
platforms = platforms.linux;
license = licenses.gpl3;
license = licenses.agpl3Plus;
};
}