lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #24760 from matthewbauer/linux-only-pkgs

Mark linux-only pkgs

authored by

Peter Simons and committed by
GitHub
4e307b64 773c456e

+18 -18
+5 -5
pkgs/applications/audio/yasr/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "yasr-${version}"; 5 - 5 + 6 6 version = "0.6.9"; 7 - 7 + 8 8 src = fetchurl { 9 9 url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${name}.tar.gz"; 10 10 sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1"; 11 11 }; 12 - 12 + 13 13 patches = [ 14 14 ./10_fix_openpty_forkpty_declarations 15 15 ./20_maxpathlen 16 16 ./30_conf 17 17 ./40_dectalk_extended_chars 18 18 ]; # taken from the debian yasr package 19 - 19 + 20 20 meta = { 21 21 homepage = "http://yasr.sourceforge.net"; 22 22 description = "A general-purpose console screen reader"; 23 23 longDescription = "Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems."; 24 - platforms = stdenv.lib.platforms.unix; 24 + platforms = stdenv.lib.platforms.linux; 25 25 license = stdenv.lib.licenses.gpl2; 26 26 maintainers = with stdenv.lib.maintainers; [ jhhuh ]; 27 27 };
+2 -2
pkgs/development/libraries/libx86emu/default.nix
··· 17 17 sed -i 's|/usr/|/|g' Makefile 18 18 ''; 19 19 20 - makeFlags = "shared"; 20 + makeFlags = [ "shared" ]; 21 21 22 22 installPhase = '' 23 23 make install DESTDIR=$out/ LIBDIR=lib ··· 28 28 license = licenses.bsd2; 29 29 homepage = https://github.com/wfeldt/libx86emu; 30 30 maintainers = with maintainers; [ bobvanderlinden ]; 31 - platforms = platforms.unix; 31 + platforms = platforms.linux; 32 32 }; 33 33 }
+1 -1
pkgs/development/libraries/neardal/default.nix
··· 25 25 license = licenses.lgpl2; 26 26 homepage = https://01.org/linux-nfc; 27 27 maintainers = with maintainers; [ tstrobel ]; 28 - platforms = platforms.unix; 28 + platforms = platforms.linux; 29 29 }; 30 30 }
+2 -2
pkgs/development/libraries/wxGTK-2.8/default.nix
··· 62 62 }; 63 63 64 64 enableParallelBuilding = true; 65 - 65 + 66 66 meta = { 67 - platforms = stdenv.lib.platforms.all; 67 + platforms = stdenv.lib.platforms.linux; 68 68 }; 69 69 }
+1 -1
pkgs/development/libraries/xbase/default.nix
··· 20 20 meta = { 21 21 homepage = http://linux.techass.com/projects/xdb/; 22 22 description = "C++ class library formerly known as XDB"; 23 - platforms = stdenv.lib.platforms.all; 23 + platforms = stdenv.lib.platforms.linux; 24 24 maintainers = [ ]; 25 25 }; 26 26 }
+1 -1
pkgs/misc/screensavers/xautolock/default.nix
··· 22 22 description = "A program that launches a given program when your X session has been idle for a given time."; 23 23 homepage = http://www.ibiblio.org/pub/linux/X11/screensavers; 24 24 maintainers = with maintainers; [ garbas ]; 25 - platforms = platforms.unix; 25 + platforms = platforms.linux; 26 26 license = licenses.gpl2; 27 27 }; 28 28 }
+1 -1
pkgs/os-specific/linux/tcp-wrappers/default.nix
··· 57 57 58 58 homepage = ftp://ftp.porcupine.org/pub/security/index.html; 59 59 license = "BSD-style"; 60 - platforms = stdenv.lib.platforms.unix; 60 + platforms = stdenv.lib.platforms.linux; 61 61 }; 62 62 }
+1 -1
pkgs/shells/rssh/default.nix
··· 76 76 ''; 77 77 homepage = "http://www.pizzashack.org/rssh/"; 78 78 license = licenses.bsd2; 79 - platforms = platforms.unix; 79 + platforms = platforms.linux; 80 80 maintainers = with maintainers; [ arobyn ]; 81 81 }; 82 82
+1 -1
pkgs/tools/filesystems/gcsfuse/default.nix
··· 14 14 sha256 = "1lj9czippsgkhr8y3r7vwxgc8i952v76v1shdv10p43gsxwyyi9a"; 15 15 }; 16 16 17 - # TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes 18 17 meta = { 19 18 license = lib.licenses.asl20; 19 + platforms = lib.platforms.linux; 20 20 maintainers = []; 21 21 homepage = https://cloud.google.com/storage/docs/gcs-fuse; 22 22 description =
+1 -1
pkgs/tools/misc/scanmem/default.nix
··· 21 21 homepage = "https://github.com/scanmem/scanmem"; 22 22 description = "Memory scanner for finding and poking addresses in executing processes"; 23 23 maintainers = [ maintainers.chattered ]; 24 - platforms = with platforms; linux ++ darwin; 24 + platforms = platforms.linux; 25 25 license = licenses.gpl3; 26 26 }; 27 27 }
+1 -1
pkgs/tools/system/hwinfo/default.nix
··· 32 32 license = licenses.gpl2; 33 33 homepage = https://github.com/openSUSE/hwinfo; 34 34 maintainers = with maintainers; [ bobvanderlinden ndowens ]; 35 - platforms = platforms.unix; 35 + platforms = platforms.linux; 36 36 }; 37 37 }
+1 -1
pkgs/tools/system/safecopy/default.nix
··· 24 24 25 25 license = stdenv.lib.licenses.gpl2Plus; 26 26 27 - platforms = stdenv.lib.platforms.all; 27 + platforms = stdenv.lib.platforms.linux; 28 28 maintainers = [ stdenv.lib.maintainers.bluescreen303 ]; 29 29 }; 30 30 }