From d0465e3837a71afae2f1a6f42eb923350d826e27 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Wed, 27 Jan 2021 10:45:51 -0500 Subject: shell.nix project.nix spine.nix mkDub.nix --- nix/pkglst/meson-pkgs.nix | 17 +++++++++++++++++ nix/pkglst/shell-pkgs.nix | 16 ++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 nix/pkglst/meson-pkgs.nix create mode 100644 nix/pkglst/shell-pkgs.nix (limited to 'nix/pkglst') diff --git a/nix/pkglst/meson-pkgs.nix b/nix/pkglst/meson-pkgs.nix new file mode 100644 index 0000000..0066e34 --- /dev/null +++ b/nix/pkglst/meson-pkgs.nix @@ -0,0 +1,17 @@ +{ pkgs ? import {} }: +let + dub2nix-src = fetchTarball { + url = "https://github.com/lionello/dub2nix/archive/master.tar.gz"; + }; + dub2nix = (import dub2nix-src) { inherit pkgs; }; +in +with pkgs; [ + nix + meson + ninja + dub + ldc + sqlite + nix-prefetch-git + validatePkgConfig +] diff --git a/nix/pkglst/shell-pkgs.nix b/nix/pkglst/shell-pkgs.nix new file mode 100644 index 0000000..7587c02 --- /dev/null +++ b/nix/pkglst/shell-pkgs.nix @@ -0,0 +1,16 @@ +{ pkgs ? import {} }: +let + dub2nix-src = fetchTarball { + url = "https://github.com/lionello/dub2nix/archive/master.tar.gz"; + }; + dub2nix = (import dub2nix-src) { inherit pkgs; }; +in +with pkgs; [ + nixFlakes + dub + ldc + sqlite + nix-prefetch-git + validatePkgConfig + jq +] -- cgit v1.2.3