biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / audio / wavrsocvt / default.nix
blob7b805496c2d8c48e1cfd4aef8e78089c1d2491ba
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation {
4   pname = "wavrsocvt";
5   version = "1.0.2.0";
7   src = fetchurl {
8     url = "https://bricxcc.sourceforge.net/wavrsocvt.tgz";
9     sha256 = "15qlvdfwbiclljj7075ycm78yzqahzrgl4ky8pymix5179acm05h";
10   };
12   unpackPhase = ''
13     tar -zxf $src
14   '';
16   installPhase = ''
17     mkdir -p $out/bin
18     cp wavrsocvt $out/bin
19   '';
21   meta = with lib; {
22     description = "Convert .wav files into sound files for Lego NXT brick";
23     mainProgram = "wavrsocvt";
24     longDescription = ''
25       wavrsocvt is a command-line utility which can be used from a
26       terminal window or script to convert .wav files into sound
27       files for the NXT brick (.rso files). It can also convert the
28       other direction (i.e., .rso -> .wav). It can produce RSO files
29       with a sample rate between 2000 and 16000 (the min/max range of
30       supported sample rates in the standard NXT firmware).
31       You can then upload these with e.g. nxt-python.
32     '';
33     homepage = "https://bricxcc.sourceforge.net/";
34     license = licenses.mpl11;
35     maintainers = with maintainers; [ leenaars ];
36     platforms = with platforms; linux;
37   };