1 files changed, 29 insertions(+), 0 deletions(-)
A default.nix
A default.nix => default.nix +29 -0
@@ 0,0 1,29 @@
+with import <nixpkgs> {}; stdenv.mkDerivation {
+ name = "somafmgtk";
+ src = ./.;
+
+ nativeBuildInputs = with pkgs; [
+ coreutils
+ cmake
+ pkg-config
+ unixtools.xxd
+ wrapGAppsHook
+ ];
+
+ buildInputs = with pkgs; [
+ gtkmm3
+ curl curlpp
+ jsoncpp
+ gsettings-desktop-schemas
+ libcanberra libcanberra-gtk3
+
+ gst_all_1.gstreamer
+ gst_all_1.gstreamermm
+ gst_all_1.gst-plugins-base
+ gst_all_1.gst-plugins-good
+ gst_all_1.gst-plugins-bad
+ gst_all_1.gst-plugins-ugly
+ gst_all_1.gst-libav
+ ];
+}
+