diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..a5dbbcb --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake . diff --git a/blisp.nix b/blisp.nix new file mode 100644 index 0000000..2401371 --- /dev/null +++ b/blisp.nix @@ -0,0 +1,49 @@ +{ + lib, + self, + stdenv, + fetchFromGitHub, + argtable, + cmake, + libserialport, + pkg-config, + testers, + IOKit ? null, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "blisp"; + version = "0.0.4-unstable"; + src = self; + + nativeBuildInputs = [ + cmake + pkg-config + ]; + + buildInputs = [ + argtable + libserialport + ] ++ lib.optional stdenv.hostPlatform.isDarwin IOKit; + + cmakeFlags = [ + "-DBLISP_BUILD_CLI=ON" + "-DBLISP_USE_SYSTEM_LIBRARIES=ON" + ]; + + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-error=implicit-function-declaration"; + + passthru.tests.version = testers.testVersion { + package = finalAttrs.finalPackage; + version = "v${finalAttrs.version}"; + }; + + meta = with lib; { + description = "In-System-Programming (ISP) tool & library for Bouffalo Labs RISC-V Microcontrollers and SoCs"; + license = licenses.mit; + mainProgram = "blisp"; + homepage = "https://github.com/pine64/blisp"; + platforms = platforms.unix; + maintainers = [ maintainers.bdd ]; + }; +}) diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..6466507 --- /dev/null +++ b/default.nix @@ -0,0 +1,9 @@ +(import ( + let + lock = builtins.fromJSON (builtins.readFile ./flake.lock); + in + fetchTarball { + url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; + sha256 = lock.nodes.flake-compat.locked.narHash; + } +) { src = ./.; }).defaultNix diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..9102d04 --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1731319897, + "narHash": "sha256-PbABj4tnbWFMfBp6OcUK5iGy1QY+/Z96ZcLpooIbuEI=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "dc460ec76cbff0e66e269457d7b728432263166c", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..fe58a85 --- /dev/null +++ b/flake.nix @@ -0,0 +1,44 @@ +{ + description = "A very basic flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + }; + + outputs = + { self, nixpkgs, ... }@inputs: + let + systems = [ + "x86_64-linux" + "aarch64-linux" + ]; + forEachSystem = nixpkgs.lib.genAttrs systems; + in + { + packages = forEachSystem ( + system: + let + pkgs = nixpkgs.legacyPackages.${system}; + in + with pkgs; + { + blisp = callPackage ./blisp.nix { inherit self; }; + default = self.packages.${system}.blisp; + } + ); + + devShells = forEachSystem ( + system: + let + pkgs = nixpkgs.legacyPackages.${system}; + in + with pkgs; + { + default = mkShell { + name = "blisp-dev"; + nativeBuildInputs = [ self.packages.${system}.default ]; + }; + } + ); + }; +} diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..493783d --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +(import ( + let + lock = builtins.fromJSON (builtins.readFile ./flake.lock); + in + fetchTarball { + url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; + sha256 = lock.nodes.flake-compat.locked.narHash; + } +) { src = ./.; }).shellNix