about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/asf-support
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2004-05-13 18:06:09 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2004-05-13 18:06:09 +0000
commitfec8c962ab9b9f2c18c7510ecde414389fa6e0af (patch)
treed1c1015340ccbffac39357097b045e684bf074bb /pkgs/development/tools/parsing/asf-support
parent201a93cb13693eec7ccb0907aed600d577d88651 (diff)
downloadnixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.tar
nixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.tar.gz
nixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.tar.bz2
nixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.tar.lz
nixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.tar.xz
nixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.tar.zst
nixlib-fec8c962ab9b9f2c18c7510ecde414389fa6e0af.zip
Added the packages that constitute the sdf2 distribution 2.1 as separate packages, collected in a Nix attribute set
svn path=/nixpkgs/trunk/; revision=1020
Diffstat (limited to 'pkgs/development/tools/parsing/asf-support')
-rw-r--r--pkgs/development/tools/parsing/asf-support/asf-support-1.3.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/tools/parsing/asf-support/asf-support-1.3.nix b/pkgs/development/tools/parsing/asf-support/asf-support-1.3.nix
new file mode 100644
index 000000000000..cc9056e9ee0c
--- /dev/null
+++ b/pkgs/development/tools/parsing/asf-support/asf-support-1.3.nix
@@ -0,0 +1,12 @@
+{stdenv, fetchurl, aterm, ptsupport, errorsupport}:
+
+stdenv.mkDerivation {
+  name = "asf-support-1.3";
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://www.cwi.nl/projects/MetaEnv/asf-support/asf-support-1.3.tar.gz;
+    md5 = "23539387ff9b0423c1c1933a8ff75d27";
+  };
+  inherit stdenv aterm ptsupport errorsupport;
+  buildInputs = [stdenv aterm ptsupport errorsupport];
+}