fixed

Pure Haskell large fixed-width integers.
git clone git://git.ppad.tech/fixed.git
Log | Files | Refs | README | LICENSE

commit a9fc6951f62aae7c3bcd53dab80f2d73aa7d7aa3
parent 16740a7f0a7c5a7db2d61c496e805539e1b83fb3
Author: Jared Tobin <jared@jtobin.io>
Date:   Wed, 22 Jan 2025 12:17:24 +0400

flake: add ppad-nixpkgs

Diffstat:
Mflake.lock | 29++++++++++++++++++++++++++++-
Mflake.nix | 2+-
2 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/flake.lock b/flake.lock @@ -34,10 +34,37 @@ "type": "github" } }, - "root": { + "ppad-nixpkgs": { "inputs": { "flake-utils": "flake-utils", "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1737297101, + "narHash": "sha256-EnXnq+JLflbWt+DvaGGnY2gfAqsGNOm5vPgHh3hkfwQ=", + "ref": "master", + "rev": "f29823875250bc99b3891f7373535ccde9a29a44", + "revCount": 1, + "type": "git", + "url": "git://git.ppad.tech/nixpkgs.git" + }, + "original": { + "ref": "master", + "type": "git", + "url": "git://git.ppad.tech/nixpkgs.git" + } + }, + "root": { + "inputs": { + "flake-utils": [ + "ppad-nixpkgs", + "flake-utils" + ], + "nixpkgs": [ + "ppad-nixpkgs", + "nixpkgs" + ], + "ppad-nixpkgs": "ppad-nixpkgs" } }, "systems": { diff --git a/flake.nix b/flake.nix @@ -11,7 +11,7 @@ nixpkgs.follows = "ppad-nixpkgs/nixpkgs"; }; - outputs = { self, nixpkgs, flake-utils }: + outputs = { self, nixpkgs, flake-utils, ppad-nixpkgs }: flake-utils.lib.eachDefaultSystem (system: let lib = "ppad-fw";