summary refs log tree commit diff
path: root/pkgs/applications/audio/yasr
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2017-04-07 21:55:02 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2017-04-07 21:55:02 -0500
commit94acb5b7806ae95b3e3b78de1ea713ae3560a226 (patch)
tree0ca594fde688aa69731c4aa194b0732b453c337c /pkgs/applications/audio/yasr
parentf48cd9503dd0e56b7bde6a9d997acf5f8d2c1900 (diff)
downloadnixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.tar
nixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.tar.gz
nixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.tar.bz2
nixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.tar.lz
nixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.tar.xz
nixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.tar.zst
nixpkgs-94acb5b7806ae95b3e3b78de1ea713ae3560a226.zip
yasr: make linux-only
Diffstat (limited to 'pkgs/applications/audio/yasr')
-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 b700cc0bd83..1008d3e8e98 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 ];
   };