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

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