8361b82d0a
In preparation for the solution of b/108, we need to consistently use `depot.third_party` for packages that are only packed in the TVL depot and `pkgs` for things that come from nixpkgs. This commit cleans up a huge chunk of these uses in //third_party Change-Id: Ic382c0cdea7330a84d5f0b7d109c824ddceb94e7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2912 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
16 lines
381 B
Nix
16 lines
381 B
Nix
# MD5 hash implementation
|
|
{ depot, pkgs, ... }:
|
|
|
|
with depot.nix;
|
|
|
|
let src = pkgs.fetchFromGitHub {
|
|
owner = "pmai";
|
|
repo = "md5";
|
|
rev = "b1412600f60d526ee34a7ba1596ec483da7894ab";
|
|
sha256 = "0lzip6b6xg7gd70xl1xmqp24fvxqj6ywjnz9lmx7988zpj20nhl2";
|
|
};
|
|
in buildLisp.library {
|
|
name = "md5";
|
|
deps = [ (buildLisp.bundled "sb-rotate-byte") ];
|
|
srcs = [ (src + "/md5.lisp") ];
|
|
}
|