From 40b78924a50209fc663e9cfb887fab00b36f37f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Wed, 12 Jan 2022 17:29:57 +0100 Subject: [PATCH] Initial work on wlstreamer --- pkgs/default.nix | 1 + pkgs/wlstreamer.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 pkgs/wlstreamer.nix diff --git a/pkgs/default.nix b/pkgs/default.nix index 312e685f..6775e3ce 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -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; } diff --git a/pkgs/wlstreamer.nix b/pkgs/wlstreamer.nix new file mode 100644 index 00000000..3941681f --- /dev/null +++ b/pkgs/wlstreamer.nix @@ -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 ]; + }; +}