diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..885922e --- /dev/null +++ b/flake.nix @@ -0,0 +1,44 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system: + let + pkgs = import nixpkgs { inherit system; }; + in + rec { + packages.forgejo-cli = pkgs.rustPlatform.buildRustPackage { + pname = "forgejo-cli"; + version = "0.1.1"; + src = pkgs.lib.cleanSource ./.; + + cargoLock.lockFile = ./Cargo.lock; + + nativeBuildInputs = with pkgs; [ pkg-config ]; + buildInputs = with pkgs; [ openssl ]; + + meta = with pkgs.lib; { + description = "CLI tool for Forgejo"; + homepage = "https://codeberg.org/Cyborus/forgejo-cli/"; + license = with licenses; [ asl20 /* or */ mit ]; + }; + }; + + packages.default = packages.forgejo-cli; + + devShells.default = pkgs.mkShell { + inputsFrom = [ packages.default ]; + + nativeBuildInputs = with pkgs; [ + cargo + rustc + ]; + + # Required for rust-analyzer to work + RUST_SRC_PATH = "${pkgs.rustPlatform.rustcSrc}/library"; + }; + }); +} + |