about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-03-05 18:01:50 +0100
committerGitHub <noreply@github.com>2017-03-05 18:01:50 +0100
commite534b358ce8a7a365cedf22eba9ee0a6fd259ab1 (patch)
tree55be9c9855c937bc80130620d4c882075367b08d /pkgs/applications/audio
parentb97c14327447b7aa4e7d72ada4c33eca11317fb8 (diff)
parent82594b3cc2d3f65dc5a50034ea5eb37df1477967 (diff)
downloadnixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.tar
nixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.tar.gz
nixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.tar.bz2
nixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.tar.lz
nixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.tar.xz
nixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.tar.zst
nixlib-e534b358ce8a7a365cedf22eba9ee0a6fd259ab1.zip
Merge pull request #23528 from ndowens/easytag
easytag: 2.4.1 -> 2.4.3
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/easytag/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/audio/easytag/default.nix b/pkgs/applications/audio/easytag/default.nix
index a6ba9eab48c1..e9186cd3242c 100644
--- a/pkgs/applications/audio/easytag/default.nix
+++ b/pkgs/applications/audio/easytag/default.nix
@@ -6,11 +6,11 @@
 stdenv.mkDerivation rec {
   name = "easytag-${version}";
   majorVersion = "2.4";
-  version = "${majorVersion}.1";
+  version = "${majorVersion}.3";
 
   src = fetchurl {
     url = "mirror://gnome/sources/easytag/${majorVersion}/${name}.tar.xz";
-    sha256 = "1mbpwp3lh6yz5xkaq3a329x4r3chmjsr83r349crhi1gax3mzvxr";
+    sha256 = "1mbxnqrw1fwcgraa1bgik25vdzvf97vma5pzknbwbqq5ly9fwlgw";
   };
 
   preFixup = ''
@@ -21,17 +21,17 @@ stdenv.mkDerivation rec {
 
   NIX_LDFLAGS = "-lid3tag -lz";
 
-  nativeBuildInputs = [ makeWrapper ];
+  nativeBuildInputs = [ makeWrapper pkgconfig intltool ];
   buildInputs = [
-    pkgconfig intltool gtk3 glib libid3tag id3lib taglib libvorbis libogg flac
+    gtk3 glib libid3tag id3lib taglib libvorbis libogg flac
     itstool libxml2 gsettings_desktop_schemas gnome3.defaultIconTheme gnome3.dconf
   ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "View and edit tags for various audio files";
     homepage = "http://projects.gnome.org/easytag/";
-    license = stdenv.lib.licenses.gpl2Plus;
-    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
-    platforms = with stdenv.lib.platforms; linux;
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ fuuzetsu ];
+    platforms = platforms.linux;
   };
 }