Skip to content

Commit

Permalink
Merge pull request #717 from rybern/fix-nix
Browse files Browse the repository at this point in the history
Small Nix installation fix
  • Loading branch information
rok-cesnovar authored Oct 9, 2020
2 parents 17c9e13 + 2eb6e23 commit 4de2491
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,4 @@ ocamlPackages.buildDunePackage rec {
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ rybern ];
};

inherit pkgs;
}
9 changes: 8 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
let derivation = import ./default.nix; in

with derivation.pkgs;
with (import (builtins.fetchTarball {
name = "nixpkgs-19.09";
# Tarball of tagged release of Nixpkgs 19.09
url = "https://github.com/NixOS/nixpkgs/archive/19.09.tar.gz";
# Tarball hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "0mhqhq21y5vrr1f30qd2bvydv4bbbslvyzclhw0kdxmkgg3z4c92";
}) {});

stdenv.mkDerivation rec {
name = "stanc-env";

Expand Down

0 comments on commit 4de2491

Please sign in to comment.