Initial work on wlstreamer

This commit is contained in:
Benjamin Bädorf 2022-01-12 17:29:57 +01:00
parent 115f41466b
commit 40b78924a5
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
2 changed files with 20 additions and 0 deletions

View file

@ -16,4 +16,5 @@ with final; {
toggle-kbd-layout = writeShellScriptBin "toggle-kbd-layout" (import ./toggle-kbd-layout.nix final);
uhk-agent = import ./uhk-agent.nix final;
wcwd = writeShellScriptBin "wcwd" (import ./wcwd.nix final);
wlstreamer = import ./wlstreamer.nix final;
}

19
pkgs/wlstreamer.nix Normal file
View file

@ -0,0 +1,19 @@
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 ];
};
}