summary refs log tree commit diff
path: root/pkgs/development/pure-modules/pandoc
diff options
context:
space:
mode:
authorAlastair Pharo <asppsa@gmail.com>2015-05-26 16:58:18 +1000
committerAlastair Pharo <asppsa@gmail.com>2015-05-26 17:51:07 +1000
commit47aeaf9d04aa53202ed7ac9c7bf17799af100793 (patch)
treeb6cb47a8286f93d4eb4d5a7648ce6c48cb38e424 /pkgs/development/pure-modules/pandoc
parenta92271f195f1490ca7da2b6ac3e1c6b38975c529 (diff)
downloadnixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar
nixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.gz
nixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.bz2
nixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.lz
nixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.xz
nixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.zst
nixpkgs-47aeaf9d04aa53202ed7ac9c7bf17799af100793.zip
Fairly complete set of packages for Pure
Diffstat (limited to 'pkgs/development/pure-modules/pandoc')
-rw-r--r--pkgs/development/pure-modules/pandoc/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/pure-modules/pandoc/default.nix b/pkgs/development/pure-modules/pandoc/default.nix
new file mode 100644
index 00000000000..b51f2ff5e87
--- /dev/null
+++ b/pkgs/development/pure-modules/pandoc/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pkgconfig, pure, pandoc, gawk, getopt }:
+
+stdenv.mkDerivation rec {
+  baseName = "pandoc";
+  version = "0.1";
+  name = "pure-${baseName}-${version}";
+
+  src = fetchurl {
+    url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
+    sha256 = "0f23a17549048ca3a8f4936ea9e931feb05997390b486850936b746996350cda";
+  };
+
+  buildInputs = [ pkgconfig pure ];
+  propagatedBuildInputs = [ pandoc gawk getopt ];
+  makeFlags = "libdir=$(out)/lib prefix=$(out)/";
+  preInstall = ''
+    mkdir -p $out/bin
+    mkdir -p $out/share/man/man1
+  '';
+
+  meta = {
+    description = "Converts Sphinx-formatted Pure documentation files to Markdown and other formats using Pandoc";
+    homepage = http://puredocs.bitbucket.org/pure-pandoc.html;
+    license = stdenv.lib.licenses.gpl3Plus;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ asppsa ];
+  };
+}