about summary refs log tree commit diff
path: root/pkgs/voidrice.nix
blob: d4611a05d259b505aed4e93366f5e351731172dc (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import <nixpkgs> }:
with builtins;
let
  specs = fromJSON (readFile ./voidrice.json);
in
pkgs.fetchgit {
  url = "https://github.com/LukeSmithxyz/voidrice";
  rev = specs.rev;
  sha256 = specs.sha256;
}