about summary refs log tree commit diff
path: root/pkgs/applications/audio/xmp
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-04-13 10:56:11 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-04-13 10:56:11 +0300
commit7c9778ff076a2f9fe22e018943f228f72a2b0dd4 (patch)
tree61b24cbcbb975c73fa9f68b943730bee2103a180 /pkgs/applications/audio/xmp
parent8aff71f5dab46151375211d8b658cc9122b0a8e2 (diff)
xmp: minor cleanup
Diffstat (limited to 'pkgs/applications/audio/xmp')
-rw-r--r--pkgs/applications/audio/xmp/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/audio/xmp/default.nix b/pkgs/applications/audio/xmp/default.nix
index 14d425f688fbb..ae8a27f32488e 100644
--- a/pkgs/applications/audio/xmp/default.nix
+++ b/pkgs/applications/audio/xmp/default.nix
@@ -4,13 +4,6 @@ stdenv.mkDerivation rec {
   pname = "xmp";
   version = "4.1.0";
 
-  meta = with lib; {
-    description = "Extended module player";
-    homepage    = "https://xmp.sourceforge.net/";
-    license     = licenses.gpl2Plus;
-    platforms   = platforms.unix;
-  };
-
   src = fetchurl {
     url = "mirror://sourceforge/${pname}/${pname}/${pname}-${version}.tar.gz";
     sha256 = "17i8fc7x7yn3z1x963xp9iv108gxfakxmdgmpv3mlm438w3n3g8x";
@@ -20,4 +13,11 @@ stdenv.mkDerivation rec {
   buildInputs = [ libxmp ]
     ++ lib.optionals stdenv.isLinux [ alsa-lib ]
     ++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio ];
+
+  meta = with lib; {
+    description = "Extended module player";
+    homepage    = "https://xmp.sourceforge.net/";
+    license     = licenses.gpl2Plus;
+    platforms   = platforms.unix;
+  };
 }