From 8b99b12f8cda1bd706667de84d86e772fdc4e173 Mon Sep 17 00:00:00 2001 From: fusiled Date: Wed, 22 Jul 2026 18:43:43 -0500 Subject: [PATCH] Nix: use Simo instead of simo And update flake lock --- flake.lock | 6 +++--- flake.nix | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/flake.lock b/flake.lock index ad4683c..8f0c823 100644 --- a/flake.lock +++ b/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1780453794, - "narHash": "sha256-bXMRa9VTsHSPXL4Cw8R6JJLQeY3Y/IP4+YJCYVmQ7FY=", + "lastModified": 1784432872, + "narHash": "sha256-n3gKTBIV4ZA5VQpUakffBe3KGu4+mhPoA34rrqS0GkA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6b316287bae2ee04c9b93c8c858d930fd07d7338", + "rev": "fd1462031fdee08f65fd0b4c6b64e22239a77870", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 8c7daa0..7a8e25d 100644 --- a/flake.nix +++ b/flake.nix @@ -29,8 +29,8 @@ system: let pkgs = import nixpkgs { inherit system; }; - simoBaseAttributes = { - pname = "simo"; + SimoBaseAttributes = { + pname = "Simo"; version = "0.0.1"; src = ./.; @@ -57,8 +57,8 @@ ctest --output-on-failure ''; }; - simo = pkgs.clangStdenv.mkDerivation { - pname = "simo"; + Simo = pkgs.clangStdenv.mkDerivation { + pname = "Simo"; version = "0.0.1"; src = ./.; @@ -87,9 +87,9 @@ }; derivationAttributes = { - default = pkgs.clangStdenv.mkDerivation simoBaseAttributes; - clang = pkgs.clangStdenv.mkDerivation simoBaseAttributes; - gcc = pkgs.gccStdenv.mkDerivation simoBaseAttributes; + default = pkgs.clangStdenv.mkDerivation SimoBaseAttributes; + clang = pkgs.clangStdenv.mkDerivation SimoBaseAttributes; + gcc = pkgs.gccStdenv.mkDerivation SimoBaseAttributes; }; in {