lol
0
fork

Configure Feed

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

loki: init at 0.1.7

+28
+26
pkgs/development/libraries/loki/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "loki-${version}"; 5 + version = "0.1.7"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/loki-lib/Loki/Loki%20${version}/loki-${version}.tar.gz"; 9 + sha256 = "1xhwna961fl4298ac5cc629x5030zlw31vx4h8zws290amw5860g"; 10 + }; 11 + 12 + buildPhase = '' 13 + substituteInPlace Makefile.common --replace /usr $out 14 + make build-shared 15 + ''; 16 + 17 + enableParallelBuilding = true; 18 + 19 + meta = with stdenv.lib; { 20 + description = "A C++ library of designs, containing flexible implementations of common design patterns and idioms"; 21 + homepage = http://loki-lib.sourceforge.net; 22 + license = licenses.mit; 23 + platforms = platforms.all; 24 + maintainers = with maintainers; [ peterhoeg ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 2669 2669 2670 2670 logstalgia = callPackage ../tools/graphics/logstalgia {}; 2671 2671 2672 + loki = callPackage ../development/libraries/loki { }; 2673 + 2672 2674 longview = callPackage ../servers/monitoring/longview { }; 2673 2675 2674 2676 lout = callPackage ../tools/typesetting/lout { };