diff options
author | Ben Sima <ben@bsima.me> | 2020-10-13 11:57:29 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-10-13 12:02:32 -0400 |
commit | 1d92f4686c4803c802dce66804eba9ebe61efc1a (patch) | |
tree | caf95700e5c587d4908138004baf4273f6bf5466 /nix/wemux.nix | |
parent | dbea29d0c604c69968adbf658ca19a6cc207890d (diff) |
Move nix files into Biz.Bild namespace
Diffstat (limited to 'nix/wemux.nix')
-rw-r--r-- | nix/wemux.nix | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/nix/wemux.nix b/nix/wemux.nix deleted file mode 100644 index 365853f..0000000 --- a/nix/wemux.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ 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 - ''; -} |