From 6b3d6452eb0ecd019468eff149b023560360e566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 17 Aug 2022 14:53:51 +0200 Subject: add flake --- flake.lock | 27 +++++++++++++++++++++++++++ flake.nix | 19 +++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..d99ebe5 --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1660646295, + "narHash": "sha256-V4G+egGRc3elXPTr7QLJ7r7yrYed0areIKDiIAlMLC8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "762b003329510ea855b4097a37511eb19c7077f0", + "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..3e7263a --- /dev/null +++ b/flake.nix @@ -0,0 +1,19 @@ +{ + description = "Description for the project"; + + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + + outputs = { self, nixpkgs, ... }: { + lib = import ./. { + inherit (nixpkgs) lib; + }; + checks.x86_64-linux = let + pkgs = nixpkgs.legacyPackages.x86_64-linux; + in { + # Run tests: nix flake check -L + nixos-test = pkgs.callPackage ./tests/test.nix { + makeTest = import (pkgs.path + "/nixos/tests/make-test-python.nix"); + }; + }; + }; +} -- cgit v1.2.3