Add laplace nix derivation

This commit is contained in:
joachimschmidt557 2021-08-08 15:05:01 +02:00
parent 9c3d635e95
commit f4d0777741
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

16
nix/laplace.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
buildGoModule rec {
pname = "laplace";
version = "0.0.1";
src = fetchFromGitHub {
owner = "adamyordan";
repo = pname;
rev = "6d877051e28fd25f9ab85ed2cfbe31d76d857be3";
sha256 = "0l7w7my64yi2pig8sdxgk8049ah3n1mb2wfw858ys3gk42xqa5xh";
};
vendorSha256 = "022bil46fyjsd18diw0rnab987sp1ialb48rj18ksj75ghjqkr62";
}