Adopt more packages.

wip/yesman
Petr Rockai 10 years ago
parent 6f5be260b4
commit 4124bb9ff5
  1. 5
      pkgs/applications/audio/flac/default.nix
  2. 5
      pkgs/applications/audio/monkeys-audio/default.nix
  3. 1
      pkgs/applications/misc/pstree/default.nix
  4. 1
      pkgs/applications/misc/redshift/default.nix
  5. 1
      pkgs/applications/misc/rxvt_unicode/default.nix
  6. 1
      pkgs/data/documentation/pthread-man-pages/default.nix
  7. 1
      pkgs/development/libraries/openldap/default.nix
  8. 1
      pkgs/development/libraries/openmpi/default.nix
  9. 6
      pkgs/development/tools/analysis/lcov/default.nix
  10. 1
      pkgs/development/tools/analysis/spin/default.nix
  11. 1
      pkgs/development/tools/misc/strace/default.nix
  12. 4
      pkgs/os-specific/linux/acpi/default.nix
  13. 4
      pkgs/os-specific/linux/fuse/default.nix
  14. 1
      pkgs/tools/networking/iftop/default.nix
  15. 1
      pkgs/tools/networking/tcpdump/default.nix
  16. 5
      pkgs/tools/package-management/dpkg/default.nix
  17. 1
      pkgs/tools/package-management/rpm/default.nix
  18. 5
      pkgs/tools/security/nmap/default.nix
  19. 4
      pkgs/tools/typesetting/pdfjam/default.nix
  20. 1
      pkgs/tools/typesetting/tex/texlive/beamer.nix

@ -12,9 +12,10 @@ stdenv.mkDerivation rec {
doCheck = true; # takes lots of time but will be run rarely (small build-time closure)
meta = {
meta = with stdenv.lib; {
homepage = http://xiph.org/flac/;
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
maintainers = maintainers.mornfall;
};
}

@ -11,4 +11,9 @@ stdenv.mkDerivation rec {
url = "http://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz";
sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz";
};
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -16,5 +16,6 @@ stdenv.mkDerivation rec {
meta = {
description = "Show the set of running processes as a tree";
license = "GPL";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -40,5 +40,6 @@ stdenv.mkDerivation rec {
license = "GPLv3+";
homepage = "http://jonls.dk/redshift";
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -41,5 +41,6 @@ stdenv.mkDerivation (rec {
meta = {
description = "A clone of the well-known terminal emulator rxvt";
homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
maintainers = stdenv.lib.maintainers.mornfall;
};
})

@ -43,5 +43,6 @@ in
meta = {
description = "POSIX threads (pthreads) manual pages from LinuxThreads";
homepage = http://www.gnu.org/software/libc/;
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.openldap.org/";
description = "An open source implementation of the Lightweight Directory Access Protocol";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -11,6 +11,7 @@ stdenv.mkDerivation {
homePage = http://www.open-mpi.org/;
description = "Open source MPI-2 implementation";
longDescription = "The Open MPI Project is an open source MPI-2 implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
done
'';
meta = {
meta = with stdenv.lib; {
description = "LCOV, a code coverage tool that enhances GNU gcov";
longDescription =
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
homepage = http://ltp.sourceforge.net/coverage/lcov.php;
license = "GPLv2+";
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
maintainers = [ maintainers.mornfall ];
platforms = platforms.all;
};
}

@ -26,5 +26,6 @@ stdenv.mkDerivation {
description = "Formal verification tool for distributed software systems";
homepage = http://spinroot.com/;
license = "free";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
description = "A system call tracer for Linux";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp";
};
meta = {
meta = with stdenv.lib; {
description = "Show battery status and other ACPI information";
longDescription = ''
Linux ACPI client is a small command-line
@ -19,5 +19,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://sourceforge.net/projects/acpiclient/;
license = "GPLv2+";
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -16,8 +16,10 @@ stdenv.mkDerivation rec {
inherit utillinux;
meta = {
meta = with stdenv.lib; {
homepage = http://fuse.sourceforge.net/;
description = "Kernel module and library that allows filesystems to be implemented in user space";
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -28,5 +28,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
homepage = http://ex-parrot.com/pdw/iftop/;
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
description = "tcpdump, a famous network sniffer";
homepage = http://www.tcpdump.org/;
license = "BSD-style";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -39,9 +39,10 @@ stdenv.mkDerivation {
done # */
'';
meta = {
meta = with stdenv.lib; {
description = "The Debian package manager";
homepage = http://wiki.debian.org/Teams/Dpkg;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -22,5 +22,6 @@ stdenv.mkDerivation rec {
homepage = http://www.rpm.org/;
license = "GPLv2";
description = "The RPM Package Manager";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

@ -20,4 +20,9 @@ stdenv.mkDerivation rec {
buildInputs =
[ libpcap libX11 gtk pkgconfig openssl python pygtk makeWrapper pysqlite ];
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -5,4 +5,8 @@
url = http://www.warwick.ac.uk/go/pdfjam/pdfjam_1.20.tgz;
sha256 = "05g3mx7mb6h15ivbv0f53r369xphy8ad8a2xblpnk9mrnlrkaxy9";
};
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = maintainers.mornfall;
};
}

@ -20,5 +20,6 @@ rec {
meta = {
description = "Extra components for TeXLive: beamer class";
maintainers = stdenv.lib.maintainers.mornfall;
};
}

Loading…
Cancel
Save