mirror of
https://github.com/hmemcpy/milewski-ctfp-pdf.git
synced 2024-11-23 04:15:23 +03:00
shell.nix: pin nixpkgs to recent 18.03 (#137)
This commit is contained in:
parent
31e569f07e
commit
080eaa44d3
10
shell.nix
10
shell.nix
@ -1,5 +1,13 @@
|
||||
# nix-shell --pure shell.nix --command 'cd src; make'
|
||||
{ pkgs ? import <nixpkgs> {} }: with pkgs;
|
||||
let
|
||||
rev = "4df3426f5a5e78cef4835897a43abd9e2a092b74";
|
||||
sha256 = "05k5mssiqxffxi45mss9wjns6k76i248rpasa48akdcriry1mp63";
|
||||
nixpkgs = builtins.fetchTarball {
|
||||
inherit sha256;
|
||||
url = "https://github.com/NixOS/nixpkgs-channels/archive/${rev}.tar.gz";
|
||||
};
|
||||
in
|
||||
{ pkgs ? import nixpkgs {} }: with pkgs;
|
||||
|
||||
mkShell {
|
||||
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ inconsolata-lgc libertine libertinus ]; };
|
||||
|
Loading…
Reference in New Issue
Block a user