From 1770604df99a2071163dd2e24cae0befca528749 Mon Sep 17 00:00:00 2001 From: Joris Date: Fri, 28 Feb 2020 11:27:12 +0100 Subject: Pin nixpkgs --- nix/nixpkgs.nix | 6 ++++++ nix/tools.nix | 15 +++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 nix/nixpkgs.nix create mode 100644 nix/tools.nix (limited to 'nix') diff --git a/nix/nixpkgs.nix b/nix/nixpkgs.nix new file mode 100644 index 0000000..9d61277 --- /dev/null +++ b/nix/nixpkgs.nix @@ -0,0 +1,6 @@ +import ((import {}).fetchFromGitHub { + owner = "NixOS"; + repo = "nixpkgs"; + rev = "19.09"; + sha256 = "1ib96has10v5nr6bzf7v8kw7yzww8zanxgw2qi1ll1sbv6kj6zpd"; +}) diff --git a/nix/tools.nix b/nix/tools.nix new file mode 100644 index 0000000..c14e4e2 --- /dev/null +++ b/nix/tools.nix @@ -0,0 +1,15 @@ +with import ./nixpkgs.nix {}; + +{ + env = stdenv.mkDerivation { + name = "tools"; + buildInputs = with pkgs; with nodePackages; [ + nodemon + sqlite + cabal-install + tmux + tmuxinator + haskellPackages.stylish-haskell + ]; + }; +} -- cgit v1.2.3