fix flake line endings

This commit is contained in:
2026-07-30 11:50:11 -05:00
parent 4ce716be9f
commit 09213859ce
+52 -52
View File
@@ -1,53 +1,53 @@
{ {
description = "CJTUI - Chris Jellyfin Terminal User Interface"; description = "CJTUI - Chris Jellyfin Terminal User Interface";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
}; };
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
let let
systems = [ "x86_64-linux" "aarch64-linux" ]; systems = [ "x86_64-linux" "aarch64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs systems; forAllSystems = nixpkgs.lib.genAttrs systems;
pkgsFor = system: import nixpkgs { pkgsFor = system: import nixpkgs {
inherit system; inherit system;
}; };
in { in {
packages = forAllSystems (system: packages = forAllSystems (system:
let let
pkgs = pkgsFor system; pkgs = pkgsFor system;
in { in {
default = pkgs.rustPlatform.buildRustPackage { default = pkgs.rustPlatform.buildRustPackage {
pname = "cjtui"; pname = "cjtui";
version = "0.1.0"; version = "0.1.0";
src = ./.; src = ./.;
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.makeWrapper pkgs.makeWrapper
]; ];
postInstall = '' postInstall = ''
wrapProgram $out/bin/cjtui \ wrapProgram $out/bin/cjtui \
--prefix PATH : ${pkgs.lib.makeBinPath [ --prefix PATH : ${pkgs.lib.makeBinPath [
pkgs.mpv pkgs.mpv
pkgs.aria2 pkgs.aria2
]} ]}
''; '';
}; };
}); });
apps = forAllSystems (system: { apps = forAllSystems (system: {
default = { default = {
type = "app"; type = "app";
program = "${self.packages.${system}.default}/bin/cjtui"; program = "${self.packages.${system}.default}/bin/cjtui";
}; };
}); });
}; };
} }