lol

Unmaintain a bunch of packages

Shea Levy 145768bf f667310c

+19 -104
+1 -1
pkgs/applications/misc/audio/sox/default.nix
··· 37 37 meta = { 38 38 description = "Sample Rate Converter for audio"; 39 39 homepage = http://sox.sourceforge.net/; 40 - maintainers = [ lib.maintainers.marcweber lib.maintainers.shlevy ]; 40 + maintainers = [ lib.maintainers.marcweber ]; 41 41 license = lib.licenses.gpl2Plus; 42 42 platforms = lib.platforms.linux ++ lib.platforms.darwin; 43 43 };
-1
pkgs/applications/office/todo.txt-cli/default.nix
··· 22 22 description = "Simple plaintext todo list manager"; 23 23 homepage = "http://todotxt.com"; 24 24 license = stdenv.lib.licenses.gpl3; 25 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 26 25 platforms = stdenv.lib.platforms.all; 27 26 }; 28 27 }
-2
pkgs/applications/version-management/src/default.nix
··· 31 31 32 32 license = stdenv.lib.licenses.bsd3; 33 33 34 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 35 - 36 34 platforms = stdenv.lib.platforms.all; 37 35 }; 38 36 }
-1
pkgs/applications/virtualization/OVMF/default.nix
··· 49 49 description = "Sample UEFI firmware for QEMU and KVM"; 50 50 homepage = http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=OVMF; 51 51 license = stdenv.lib.licenses.bsd2; 52 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 53 52 platforms = ["x86_64-linux" "i686-linux"]; 54 53 }; 55 54 })
+1 -1
pkgs/applications/virtualization/qemu/default.nix
··· 64 64 homepage = http://www.qemu.org/; 65 65 description = "A generic and open source machine emulator and virtualizer"; 66 66 license = licenses.gpl2Plus; 67 - maintainers = with maintainers; [ viric shlevy eelco ]; 67 + maintainers = with maintainers; [ viric eelco ]; 68 68 platforms = platforms.linux; 69 69 }; 70 70 }
+1 -1
pkgs/build-support/build-maven.nix
··· 1 1 { stdenv, maven, runCommand, writeText, fetchurl, lib }: 2 2 /* Takes an info file generated by mvn2nix 3 - * (https://github.com/shlevy/mvn2nix-maven-plugin) and builds the maven 3 + * (https://github.com/NixOS/mvn2nix-maven-plugin) and builds the maven 4 4 * project with it. 5 5 * 6 6 * repo: A local maven repository with the project's dependencies.
-34
pkgs/development/compilers/ats-extsolve/default.nix
··· 1 - { stdenv, fetchurl, ats2, python, z3, pkgconfig, json_c }: 2 - 3 - stdenv.mkDerivation { 4 - name = "ats-extsolve-0pre11177d9"; 5 - 6 - buildInputs = [ python z3 ats2 pkgconfig json_c ]; 7 - 8 - src = fetchurl { 9 - url = "https://github.com/wdblair/ATS-Postiats-contrib/archive/11177d9194b852392d5e92e67d0ecc7b6abc02bf.tar.gz"; 10 - sha256 = "12fhlcpq5b4pc3h21w1i7yv1ymrll2g4zlf1pvg0v8cr6aa6i813"; 11 - }; 12 - 13 - postUnpack = '' 14 - export PATSHOMERELOC="$PWD/$sourceRoot" 15 - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$PATSHOMERELOC" 16 - export INCLUDE_ATS="-IATS $PATSHOMERELOC" 17 - ''; 18 - 19 - preBuild = "cd projects/MEDIUM/ATS-extsolve"; 20 - 21 - buildFlags = [ "setup" "patsolve" ]; 22 - 23 - installPhase = '' 24 - install -d -m755 $out/bin 25 - install -m755 patsolve $out/bin 26 - ''; 27 - 28 - meta = { 29 - platforms = ats2.meta.platforms; 30 - homepage = http://www.illtyped.com/projects/patsolve; 31 - description = "External Constraint-Solving for ATS2"; 32 - maintainer = [ stdenv.lib.maintainers.shlevy ]; 33 - }; 34 - }
-1
pkgs/development/compilers/edk2/default.nix
··· 35 35 description = "Intel EFI development kit"; 36 36 homepage = http://sourceforge.net/projects/edk2/; 37 37 license = stdenv.lib.licenses.bsd2; 38 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 39 38 platforms = ["x86_64-linux" "i686-linux"]; 40 39 }; 41 40
+1 -1
pkgs/development/compilers/gcc/4.8/default.nix
··· 510 510 compiler used in the GNU system including the GNU/Linux variant. 511 511 ''; 512 512 513 - maintainers = with stdenv.lib.maintainers; [ viric shlevy simons ]; 513 + maintainers = with stdenv.lib.maintainers; [ viric simons ]; 514 514 515 515 # gnatboot is not available out of linux platforms, so we disable the darwin build 516 516 # for the gnat (ada compiler).
+1 -1
pkgs/development/compilers/gcc/4.9/default.nix
··· 509 509 compiler used in the GNU system including the GNU/Linux variant. 510 510 ''; 511 511 512 - maintainers = with stdenv.lib.maintainers; [ viric shlevy simons ]; 512 + maintainers = with stdenv.lib.maintainers; [ viric simons ]; 513 513 514 514 # gnatboot is not available out of linux platforms, so we disable the darwin build 515 515 # for the gnat (ada compiler).
+1 -1
pkgs/development/compilers/gcc/5/default.nix
··· 507 507 compiler used in the GNU system including the GNU/Linux variant. 508 508 ''; 509 509 510 - maintainers = with stdenv.lib.maintainers; [ viric shlevy simons ]; 510 + maintainers = with stdenv.lib.maintainers; [ viric simons ]; 511 511 512 512 # gnatboot is not available out of linux platforms, so we disable the darwin build 513 513 # for the gnat (ada compiler).
-1
pkgs/development/compilers/llvm/3.4/clang.nix
··· 48 48 description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; 49 49 homepage = http://llvm.org/; 50 50 license = stdenv.lib.licenses.bsd3; 51 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 52 51 platforms = stdenv.lib.platforms.all; 53 52 }; 54 53 }
+1 -1
pkgs/development/compilers/llvm/3.4/dragonegg.nix
··· 28 28 homepage = http://dragonegg.llvm.org/; 29 29 description = "gcc plugin that replaces gcc's optimizers and code generators by those in LLVM"; 30 30 license = stdenv.lib.licenses.gpl2Plus; 31 - maintainers = with stdenv.lib.maintainers; [viric shlevy]; 31 + maintainers = with stdenv.lib.maintainers; [viric]; 32 32 platforms = with stdenv.lib.platforms; linux; 33 33 broken = true; 34 34 };
-1
pkgs/development/compilers/llvm/3.4/lld.nix
··· 25 25 description = "A set of modular code for creating linker tools"; 26 26 homepage = http://llvm.org/; 27 27 license = stdenv.lib.licenses.bsd3; 28 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 29 28 platforms = stdenv.lib.platforms.all; 30 29 }; 31 30 }
-1
pkgs/development/compilers/llvm/3.4/lldb.nix
··· 38 38 description = "A next-generation high-performance debugger"; 39 39 homepage = http://llvm.org/; 40 40 license = stdenv.lib.licenses.bsd3; 41 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 42 41 platforms = stdenv.lib.platforms.all; 43 42 }; 44 43 }
+1 -1
pkgs/development/compilers/llvm/3.4/llvm.nix
··· 67 67 description = "Collection of modular and reusable compiler and toolchain technologies"; 68 68 homepage = http://llvm.org/; 69 69 license = stdenv.lib.licenses.bsd3; 70 - maintainers = with stdenv.lib.maintainers; [ shlevy lovek323 raskin viric ]; 70 + maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ]; 71 71 platforms = stdenv.lib.platforms.all; 72 72 }; 73 73 }
-1
pkgs/development/compilers/llvm/3.4/polly.nix
··· 21 21 description = "A polyhedral optimizer for llvm"; 22 22 homepage = http://llvm.org/; 23 23 license = stdenv.lib.licenses.bsd3; 24 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 25 24 platforms = stdenv.lib.platforms.all; 26 25 }; 27 26 }
-1
pkgs/development/compilers/llvm/3.5/clang.nix
··· 49 49 description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; 50 50 homepage = http://llvm.org/; 51 51 license = stdenv.lib.licenses.bsd3; 52 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 53 52 platforms = stdenv.lib.platforms.all; 54 53 }; 55 54 }
+1 -1
pkgs/development/compilers/llvm/3.5/dragonegg.nix
··· 20 20 homepage = http://dragonegg.llvm.org/; 21 21 description = "gcc plugin that replaces gcc's optimizers and code generators by those in LLVM"; 22 22 license = stdenv.lib.licenses.gpl2Plus; 23 - maintainers = with stdenv.lib.maintainers; [viric shlevy]; 23 + maintainers = with stdenv.lib.maintainers; [viric]; 24 24 platforms = with stdenv.lib.platforms; linux; 25 25 }; 26 26 }
-1
pkgs/development/compilers/llvm/3.5/libc++/default.nix
··· 40 40 homepage = http://libcxx.llvm.org/; 41 41 description = "A new implementation of the C++ standard library, targeting C++11"; 42 42 license = "BSD"; 43 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 44 43 platforms = stdenv.lib.platforms.unix; 45 44 }; 46 45 }
+1 -1
pkgs/development/compilers/llvm/3.5/libc++abi/default.nix
··· 53 53 homepage = http://libcxxabi.llvm.org/; 54 54 description = "A new implementation of low level support for a standard C++ library"; 55 55 license = "BSD"; 56 - maintainers = with stdenv.lib.maintainers; [ shlevy vlstill ]; 56 + maintainers = with stdenv.lib.maintainers; [ vlstill ]; 57 57 platforms = stdenv.lib.platforms.unix; 58 58 }; 59 59 }
-1
pkgs/development/compilers/llvm/3.5/lld.nix
··· 25 25 description = "A set of modular code for creating linker tools"; 26 26 homepage = http://llvm.org/; 27 27 license = stdenv.lib.licenses.bsd3; 28 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 29 28 platforms = stdenv.lib.platforms.all; 30 29 }; 31 30 }
-1
pkgs/development/compilers/llvm/3.5/lldb.nix
··· 38 38 description = "A next-generation high-performance debugger"; 39 39 homepage = http://llvm.org/; 40 40 license = stdenv.lib.licenses.bsd3; 41 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 42 41 platforms = stdenv.lib.platforms.all; 43 42 broken = true; 44 43 };
+1 -1
pkgs/development/compilers/llvm/3.5/llvm.nix
··· 68 68 description = "Collection of modular and reusable compiler and toolchain technologies"; 69 69 homepage = http://llvm.org/; 70 70 license = stdenv.lib.licenses.bsd3; 71 - maintainers = with stdenv.lib.maintainers; [ shlevy lovek323 raskin viric ]; 71 + maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ]; 72 72 platforms = stdenv.lib.platforms.all; 73 73 }; 74 74 }
-1
pkgs/development/compilers/llvm/3.5/polly.nix
··· 21 21 description = "A polyhedral optimizer for llvm"; 22 22 homepage = http://llvm.org/; 23 23 license = stdenv.lib.licenses.bsd3; 24 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 25 24 platforms = stdenv.lib.platforms.all; 26 25 }; 27 26 }
-1
pkgs/development/compilers/llvm/3.6/clang/default.nix
··· 50 50 description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; 51 51 homepage = http://llvm.org/; 52 52 license = stdenv.lib.licenses.bsd3; 53 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 54 53 platforms = stdenv.lib.platforms.all; 55 54 }; 56 55 }
-1
pkgs/development/compilers/llvm/3.6/libc++/default.nix
··· 35 35 homepage = http://libcxx.llvm.org/; 36 36 description = "A new implementation of the C++ standard library, targeting C++11"; 37 37 license = "BSD"; 38 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 39 38 platforms = stdenv.lib.platforms.unix; 40 39 }; 41 40 }
+1 -1
pkgs/development/compilers/llvm/3.6/libc++abi.nix
··· 41 41 homepage = http://libcxxabi.llvm.org/; 42 42 description = "A new implementation of low level support for a standard C++ library"; 43 43 license = "BSD"; 44 - maintainers = with stdenv.lib.maintainers; [ shlevy vlstill ]; 44 + maintainers = with stdenv.lib.maintainers; [ vlstill ]; 45 45 platforms = stdenv.lib.platforms.unix; 46 46 }; 47 47 }
-1
pkgs/development/compilers/llvm/3.6/lldb.nix
··· 38 38 description = "A next-generation high-performance debugger"; 39 39 homepage = http://llvm.org/; 40 40 license = stdenv.lib.licenses.bsd3; 41 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 42 41 platforms = stdenv.lib.platforms.all; 43 42 }; 44 43 }
+1 -1
pkgs/development/compilers/llvm/3.6/llvm.nix
··· 68 68 description = "Collection of modular and reusable compiler and toolchain technologies"; 69 69 homepage = http://llvm.org/; 70 70 license = stdenv.lib.licenses.bsd3; 71 - maintainers = with stdenv.lib.maintainers; [ shlevy lovek323 raskin viric ]; 71 + maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ]; 72 72 platforms = stdenv.lib.platforms.all; 73 73 }; 74 74 }
+1 -1
pkgs/development/compilers/openjdk/default.nix
··· 233 233 homepage = http://openjdk.java.net/; 234 234 license = stdenv.lib.licenses.gpl2; 235 235 description = "The open-source Java Development Kit"; 236 - maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.shlevy ]; 236 + maintainers = [ stdenv.lib.maintainers.eelco ]; 237 237 platforms = stdenv.lib.platforms.linux; 238 238 }; 239 239
-2
pkgs/development/interpreters/nix-exec/default.nix
··· 18 18 19 19 license = stdenv.lib.licenses.mit; 20 20 21 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 22 - 23 21 platforms = nix.meta.platforms; 24 22 }; 25 23 }
-1
pkgs/development/libraries/c-ares/default.nix
··· 13 13 homepage = http://c-ares.haxx.se; 14 14 license = licenses.mit; 15 15 platforms = platforms.all; 16 - maintainers = with maintainers; [ shlevy ]; 17 16 }; 18 17 }
-2
pkgs/development/libraries/cloog/0.18.0.nix
··· 39 39 40 40 license = stdenv.lib.licenses.gpl2Plus; 41 41 42 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 43 - 44 42 /* Leads to an ICE on Cygwin: 45 43 46 44 make[3]: Entering directory `/tmp/nix-build-9q5gw5m37q5l4f0kjfv9ar8fsc9plk27-ppl-0.10.2.drv-1/ppl-0.10.2/src'
-2
pkgs/development/libraries/cloog/default.nix
··· 40 40 41 41 license = stdenv.lib.licenses.gpl2Plus; 42 42 43 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 44 - 45 43 /* Leads to an ICE on Cygwin: 46 44 47 45 make[3]: Entering directory `/tmp/nix-build-9q5gw5m37q5l4f0kjfv9ar8fsc9plk27-ppl-0.10.2.drv-1/ppl-0.10.2/src'
-1
pkgs/development/libraries/cpp-netlib/default.nix
··· 22 22 description = "A collection of open-source libraries for high level network programming"; 23 23 homepage = http://cpp-netlib.org; 24 24 license = licenses.boost; 25 - maintainers = with maintainers; [ shlevy ]; 26 25 platforms = platforms.all; 27 26 }; 28 27 }
-1
pkgs/development/libraries/gnu-efi/default.nix
··· 25 25 description = "GNU EFI development toolchain"; 26 26 homepage = http://sourceforge.net/projects/gnu-efi/; 27 27 license = licenses.bsd3; 28 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 29 28 platforms = platforms.linux; 30 29 }; 31 30 }
-2
pkgs/development/libraries/http-parser/default.nix
··· 42 42 homepage = https://github.com/joyent/http-parser; 43 43 44 44 license = stdenv.lib.licenses.mit; 45 - 46 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 47 45 }; 48 46 }
-1
pkgs/development/libraries/isl/0.11.1.nix
··· 17 17 homepage = http://www.kotnet.org/~skimo/isl/; 18 18 license = stdenv.lib.licenses.lgpl21; 19 19 description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; 20 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 21 20 platforms = stdenv.lib.platforms.all; 22 21 }; 23 22 }
-1
pkgs/development/libraries/isl/0.12.2.nix
··· 16 16 homepage = http://www.kotnet.org/~skimo/isl/; 17 17 license = stdenv.lib.licenses.lgpl21; 18 18 description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; 19 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 20 19 platforms = stdenv.lib.platforms.all; 21 20 }; 22 21 }
-1
pkgs/development/libraries/isl/0.14.1.nix
··· 16 16 homepage = http://www.kotnet.org/~skimo/isl/; 17 17 license = stdenv.lib.licenses.lgpl21; 18 18 description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; 19 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 20 19 platforms = stdenv.lib.platforms.all; 21 20 }; 22 21 }
-1
pkgs/development/libraries/isl/default.nix
··· 18 18 homepage = http://www.kotnet.org/~skimo/isl/; 19 19 license = stdenv.lib.licenses.lgpl21; 20 20 description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; 21 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 22 21 platforms = stdenv.lib.platforms.all; 23 22 }; 24 23 }
+1 -1
pkgs/development/libraries/libtsm/default.nix
··· 24 24 description = "Terminal-emulator State Machine"; 25 25 homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/"; 26 26 license = licenses.mit; 27 - maintainers = with maintainers; [ shlevy cstrahan ]; 27 + maintainers = with maintainers; [ cstrahan ]; 28 28 }; 29 29 }
-1
pkgs/development/libraries/nix-plugins/default.nix
··· 19 19 description = "Collection of miscellaneous plugins for the nix expression language"; 20 20 homepage = https://github.com/shlevy/nix-plugins; 21 21 license = stdenv.lib.licenses.mit; 22 - maintaners = [ stdenv.lib.maintainers.shlevy ]; 23 22 platforms = stdenv.lib.platforms.all; 24 23 broken = true; 25 24 };
+1 -1
pkgs/development/web/nodejs/default.nix
··· 62 62 description = "Event-driven I/O framework for the V8 JavaScript engine"; 63 63 homepage = http://nodejs.org; 64 64 license = licenses.mit; 65 - maintainers = [ maintainers.goibhniu maintainers.shlevy maintainers.havvy ]; 65 + maintainers = [ maintainers.goibhniu maintainers.havvy ]; 66 66 platforms = platforms.linux ++ platforms.darwin; 67 67 }; 68 68 }
+1 -1
pkgs/development/web/nodejs/v0_10.nix
··· 60 60 description = "Event-driven I/O framework for the V8 JavaScript engine"; 61 61 homepage = http://nodejs.org; 62 62 license = licenses.mit; 63 - maintainers = [ maintainers.goibhniu maintainers.shlevy ]; 63 + maintainers = [ maintainers.goibhniu ]; 64 64 platforms = platforms.linux ++ platforms.darwin; 65 65 }; 66 66 }
-1
pkgs/os-specific/linux/kernel/manual-config.nix
··· 209 209 homepage = http://www.kernel.org/; 210 210 repositories.git = https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git; 211 211 maintainers = [ 212 - maintainers.shlevy 213 212 maintainers.thoughtpolice 214 213 ]; 215 214 platforms = platforms.linux;
-1
pkgs/os-specific/linux/kmod/default.nix
··· 27 27 meta = { 28 28 homepage = http://www.kernel.org/pub/linux/utils/kernel/kmod/; 29 29 description = "Tools for loading and managing Linux kernel modules"; 30 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 31 30 platforms = stdenv.lib.platforms.linux; 32 31 }; 33 32 }
-1
pkgs/os-specific/linux/kmscon/default.nix
··· 44 44 description = "KMS/DRM based System Console"; 45 45 homepage = "http://www.freedesktop.org/wiki/Software/kmscon/"; 46 46 license = stdenv.lib.licenses.mit; 47 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 48 47 platforms = stdenv.lib.platforms.linux; 49 48 }; 50 49 }
-2
pkgs/servers/http/jetty/9.2.nix
··· 21 21 22 22 homepage = http://www.eclipse.org/jetty/; 23 23 24 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 25 - 26 24 platforms = stdenv.lib.platforms.all; 27 25 28 26 license = [ stdenv.lib.licenses.asl20 stdenv.lib.licenses.epl10 ];
-1
pkgs/servers/irc/ngircd/default.nix
··· 23 23 description = "Next Generation IRC Daemon"; 24 24 homepage = http://ngircd.barton.de; 25 25 license = stdenv.lib.licenses.gpl2; 26 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 27 26 platforms = stdenv.lib.platforms.all; 28 27 }; 29 28 }
-2
pkgs/servers/monitoring/newrelic-sysmond/default.nix
··· 24 24 description = "System-wide monitoring for newrelic"; 25 25 26 26 license = stdenv.lib.licenses.unfree; 27 - 28 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 29 27 }; 30 28 }
+1 -1
pkgs/servers/sql/mariadb/default.nix
··· 111 111 description = "An enhanced, drop-in replacement for MySQL"; 112 112 homepage = https://mariadb.org/; 113 113 license = stdenv.lib.licenses.gpl2; 114 - maintainers = with stdenv.lib.maintainers; [ shlevy thoughtpolice wkennington ]; 114 + maintainers = with stdenv.lib.maintainers; [ thoughtpolice wkennington ]; 115 115 platforms = stdenv.lib.platforms.all; 116 116 }; 117 117 }
-1
pkgs/tools/filesystems/unionfs-fuse/default.nix
··· 36 36 description = "FUSE UnionFS implementation"; 37 37 homepage = http://podgorny.cz/moin/UnionFsFuse; 38 38 license = stdenv.lib.licenses.bsd3; 39 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 40 39 platforms = stdenv.lib.platforms.linux; 41 40 }; 42 41 }
-2
pkgs/tools/misc/gummiboot/default.nix
··· 25 25 license = stdenv.lib.licenses.lgpl21Plus; 26 26 27 27 platforms = [ "x86_64-linux" "i686-linux" ]; 28 - 29 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 30 28 }; 31 29 }
+1 -1
pkgs/tools/misc/tmux/default.nix
··· 44 44 license = stdenv.lib.licenses.bsd3; 45 45 46 46 platforms = stdenv.lib.platforms.unix; 47 - maintainers = with stdenv.lib.maintainers; [ shlevy thammers ]; 47 + maintainers = with stdenv.lib.maintainers; [ thammers ]; 48 48 }; 49 49 }
-1
pkgs/tools/networking/strongswan/default.nix
··· 23 23 NIX_LDFLAGS = "-lgcc_s" ; 24 24 25 25 meta = { 26 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 27 26 description = "OpenSource IPsec-based VPN Solution"; 28 27 homepage = https://www.strongswan.org; 29 28 license = stdenv.lib.licenses.gpl2Plus;
-2
pkgs/tools/security/rng-tools/default.nix
··· 17 17 license = stdenv.lib.licenses.gpl2; 18 18 19 19 platforms = stdenv.lib.platforms.linux; 20 - 21 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 22 20 }; 23 21 }
-1
pkgs/tools/system/efibootmgr/default.nix
··· 27 27 description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager"; 28 28 homepage = http://linux.dell.com/efibootmgr/; 29 29 license = licenses.gpl2; 30 - maintainers = with maintainers; [ shlevy ]; 31 30 platforms = platforms.linux; 32 31 }; 33 32 }
-2
pkgs/tools/system/gptfdisk/default.nix
··· 27 27 28 28 homepage = http://www.rodsbooks.com/gdisk/; 29 29 30 - maintainers = [ stdenv.lib.maintainers.shlevy ]; 31 - 32 30 platforms = stdenv.lib.platforms.linux; 33 31 }; 34 32 }
-1
pkgs/top-level/all-packages.nix
··· 3553 3553 3554 3554 ats = callPackage ../development/compilers/ats { }; 3555 3555 ats2 = callPackage ../development/compilers/ats2 { }; 3556 - ats-extsolve = callPackage ../development/compilers/ats-extsolve { }; 3557 3556 3558 3557 avra = callPackage ../development/compilers/avra { }; 3559 3558