about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-06-12 15:59:59 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-06-12 15:59:59 +0000
commit0784550c35e0b0e53b0b5ae6957d708102bb17a7 (patch)
treeec0758c1a2a63010ed86e9fad8d9befd69ab4b23 /pkgs/tools
parent638f4bf12179a025856f29a512252bc04370c736 (diff)
downloadnixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.gz
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.bz2
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.lz
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.xz
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.zst
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.zip
Added ViewMTN and dependency; currently ViewMTN has to be manually symlinked in corresponding directory.
svn path=/nixpkgs/trunk/; revision=12060
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/highlight/2.6.10.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/text/highlight/2.6.10.nix b/pkgs/tools/text/highlight/2.6.10.nix
new file mode 100644
index 000000000000..675a996445f4
--- /dev/null
+++ b/pkgs/tools/text/highlight/2.6.10.nix
@@ -0,0 +1,20 @@
+
+args : with args; 
+rec {
+  src = fetchurl {
+    url = http://www.andre-simon.de/zip/highlight-2.6.10.tar.bz2;
+    sha256 = "18f2ki9pajxlp0aq4ingxj7m0cp7wlbc40xm25pnxc1yis9vlira";
+  };
+
+  buildInputs = [getopt];
+  configureFlags = [];
+  makeFlags = ["PREFIX=$out"];
+
+  /* doConfigure should be specified separately */
+  phaseNames = ["doMakeInstall"];
+      
+  name = "highlight-" + version;
+  meta = {
+    description = "Source code highlighting tool";
+  };
+}