20 lines
453 B
Nix
20 lines
453 B
Nix
self: with self; rustPlatform.buildRustPackage rec {
|
|
pname = "wlstreamer";
|
|
version = "0.4.0";
|
|
|
|
src = fetchGit {
|
|
url = "git@git.b12f.io:b12f/wlstreamer.git";
|
|
rev = "8625f0f2c90667401dd61c7d88cca9cf75eca337";
|
|
sha256 = "";
|
|
};
|
|
|
|
cargoSha256 = "";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "";
|
|
homepage = "https://github.com/b12f/wlstreamer";
|
|
license = licenses.unlicense;
|
|
maintainers = [ maintainers.tailhook ];
|
|
};
|
|
}
|