nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

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

optar: init at 20150210

+37
+35
pkgs/tools/graphics/optar/default.nix
··· 1 + { stdenv, fetchurl, imagemagick, libpng }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "optar-${version}"; 5 + version = "20150210"; 6 + 7 + src = fetchurl { 8 + url = "http://ronja.twibright.com/optar.tgz"; 9 + sha256 = "10lr31k3xfcpa6vxkbl3abph7j3gks2210489khnnzmhmfdnm1a4"; 10 + }; 11 + 12 + buildInputs = [ libpng ]; 13 + 14 + enableParallelBuilding = true; 15 + 16 + postPatch = '' 17 + substituteInPlace Makefile \ 18 + --replace /usr/local $out 19 + 20 + substituteInPlace pgm2ps \ 21 + --replace 'convert ' "${stdenv.lib.getBin imagemagick}/bin/convert " 22 + ''; 23 + 24 + preInstall = '' 25 + mkdir -p $out/bin 26 + ''; 27 + 28 + meta = with stdenv.lib; { 29 + description = "Optar stands for OPTical ARchiver - it's a codec for encoding data on paper"; 30 + homepage = http://ronja.twibright.com/optar/; 31 + license = licenses.gpl2; 32 + maintainers = with maintainers; [ peterhoeg ]; 33 + platforms = with platforms; linux; # possibly others, but only tested on Linux 34 + }; 35 + }
+2
pkgs/top-level/all-packages.nix
··· 1226 1226 1227 1227 onboard = callPackage ../applications/misc/onboard { }; 1228 1228 1229 + optar = callPackage ../tools/graphics/optar {}; 1230 + 1229 1231 patdiff = callPackage ../tools/misc/patdiff { }; 1230 1232 1231 1233 playerctl = callPackage ../tools/audio/playerctl { };