summaryrefslogtreecommitdiff
path: root/nix/wemux.nix
blob: 4972815139b98ad7b2dfe3b6e3ce0178163d3cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ sources, stdenv }:

stdenv.mkDerivation rec {
  name = "wemux";
  version = "2020.04.03";
  src = sources.wemux;
  installPhase = ''
    mkdir -p $out/bin
    cp ${src}/wemux $out/bin
    chmod +x $out/bin/wemux
  '';
}