util  Artifact [cdba1df3cc]

Artifact cdba1df3cceebcc2f6ae2e22bbb2ab85621ee8a296c443920191be638e3f138e:


let pkgs =  import <nixpkgs> {};

in pkgs.stdenv.mkDerivation {
	name = "velartrill-util";
	buildInputs = with pkgs; [
		coreutils gnumake gcc ocaml binutils-unwrapped
		glibc xorg.libX11.dev libsodium
	];
	src = ./.;

	meta = with pkgs.stdenv.lib; {
		description = "a collection of handy utilities for a variety of tasks ranging from unit conversion to password generation to the manipulation of disobedient software";
		homepage = https://c.hale.su/util;
		license = licenses.agpl3;
		platforms = platforms.all;
	};
}