summary refs log tree commit diff
path: root/pkgs/applications/audio/bs1770gain/default.nix
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-05 08:36:55 -0600
committerGraham Christensen <graham@grahamc.com>2017-03-06 17:26:02 -0500
commit558751b41eda2970d6f1279d06b3f9aa5929d1f0 (patch)
treedd7d7f60783f1958209f2e3f9692ce8d7d30584f /pkgs/applications/audio/bs1770gain/default.nix
parent918a4e649dd81b38e91832e3cd2aafcd43535e95 (diff)
downloadnixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.tar
nixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.tar.gz
nixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.tar.bz2
nixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.tar.lz
nixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.tar.xz
nixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.tar.zst
nixpkgs-558751b41eda2970d6f1279d06b3f9aa5929d1f0.zip
bs1770gain: 0.4.7 -> 0.4.12
Diffstat (limited to 'pkgs/applications/audio/bs1770gain/default.nix')
-rw-r--r--pkgs/applications/audio/bs1770gain/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/audio/bs1770gain/default.nix b/pkgs/applications/audio/bs1770gain/default.nix
index 862f5263695..0241e38281b 100644
--- a/pkgs/applications/audio/bs1770gain/default.nix
+++ b/pkgs/applications/audio/bs1770gain/default.nix
@@ -2,21 +2,21 @@
 
 stdenv.mkDerivation rec {
   name = "bs1770gain-${version}";
-  version = "0.4.7";
+  version = "0.4.12";
 
   src = fetchurl {
     url = "mirror://sourceforge/bs1770gain/${name}.tar.gz";
-    sha256 = "0dnypm7k4axc693g0z73n2mvycbzgc4lnj2am64xjzyg37my4qzz";
+    sha256 = "0n9skdap1vnl6w52fx0gsrjlk7w3xgdwi62ycyf96h29rx059z6a";
   };
 
   buildInputs = [ ffmpeg sox ];
 
   NIX_CFLAGS_COMPILE = "-Wno-error";
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A audio/video loudness scanner implementing ITU-R BS.1770";
-    license = stdenv.lib.licenses.gpl2Plus;
+    license = licenses.gpl2Plus;
     homepage = "http://bs1770gain.sourceforge.net/";
-    platforms = stdenv.lib.platforms.all;
+    platforms = platforms.all;
   };
 }