Pin nixpkgs

This commit is contained in:
David Pätzel 2020-11-09 15:02:19 +01:00
parent 3800d06d5e
commit b4f5810239
2 changed files with 6 additions and 3 deletions

View File

@ -15,7 +15,7 @@ license: GPL-3.0-only
license-file: LICENSE
author: David Pätzel
maintainer: david.paetzel@posteo.de
copyright: Copyright (c): 2019 David Pätzel
copyright: Copyright (c): 2020 David Pätzel
category: Optimization
build-type: Simple

View File

@ -14,6 +14,9 @@ let
};
};
};
# pkgs = import <nixpkgs> { inherit config; };
pkgs = import /home/david/Code/nixpkgs/default.nix { inherit config; };
pkgs = import (builtins.fetchGit {
name = "nixpkgs-2020-05-13";
url = "https://github.com/NixOS/nixpkgs/";
rev = "a29c7741a3257f9e27daf126e18f472102eaa14b";
}) { inherit config; };
in { haga = pkgs.haskellPackages.haga; }