about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-04-09 14:18:10 +0200
committerGitHub <noreply@github.com>2017-04-09 14:18:10 +0200
commit4e307b644a75b7f884e79a1f21d8c5ad177b6cdd (patch)
treeaac61f64ab51dac2367f8711bc55f04451257dcf /pkgs/applications/audio
parent773c456ef49e84de75931ce7d95a565888bff096 (diff)
parent8df24b78d53da95ef55a1cb6e2caad0bab45f5fc (diff)
downloadnixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.tar
nixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.tar.gz
nixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.tar.bz2
nixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.tar.lz
nixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.tar.xz
nixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.tar.zst
nixlib-4e307b644a75b7f884e79a1f21d8c5ad177b6cdd.zip
Merge pull request #24760 from matthewbauer/linux-only-pkgs
Mark linux-only pkgs
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/yasr/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/audio/yasr/default.nix b/pkgs/applications/audio/yasr/default.nix
index b700cc0bd83d..1008d3e8e983 100644
--- a/pkgs/applications/audio/yasr/default.nix
+++ b/pkgs/applications/audio/yasr/default.nix
@@ -2,26 +2,26 @@
 
 stdenv.mkDerivation rec {
   name = "yasr-${version}";
-  
+
   version = "0.6.9";
-  
+
   src = fetchurl {
     url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${name}.tar.gz";
     sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
   };
-  
+
   patches = [
     ./10_fix_openpty_forkpty_declarations
     ./20_maxpathlen
     ./30_conf
     ./40_dectalk_extended_chars
   ]; # taken from the debian yasr package
-  
+
   meta = {
     homepage = "http://yasr.sourceforge.net";
     description = "A general-purpose console screen reader";
     longDescription = "Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems.";
-    platforms = stdenv.lib.platforms.unix;
+    platforms = stdenv.lib.platforms.linux;
     license = stdenv.lib.licenses.gpl2;
     maintainers = with stdenv.lib.maintainers; [ jhhuh ];
   };