noredink-ui/shell.nix

25 lines
604 B
Nix
Raw Normal View History

2018-12-19 01:43:08 +03:00
with import (builtins.fetchTarball rec {
# grab a hash from here: https://nixos.org/channels/
name = "nixpkgs-darwin-18.09pre153253.7e88992a8c7";
url = "https://github.com/nixos/nixpkgs/archive/7e88992a8c7b2de0bcb89182d8686b27bd93e46a.tar.gz";
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "1f6lf4addczi81hchqbzjlhrsmkrj575dmdjdhyl0jkm7ypy2lgk";
}) {};
stdenv.mkDerivation {
name = "noredink-ui";
buildInputs = [
# base dependencies
git
gnumake
# node dependencies
2019-02-12 22:10:15 +03:00
nodejs
2018-12-19 01:43:08 +03:00
nodePackages.npm
2019-04-01 17:26:15 +03:00
# preview dependencies
2019-04-02 23:07:26 +03:00
entr
2019-04-01 17:26:15 +03:00
python3
2018-12-19 01:43:08 +03:00
];
}