* Improved a bunch of "name" attributes (mostly missing version

numbers).

svn path=/nixpkgs/trunk/; revision=17991
This commit is contained in:
Eelco Dolstra
2009-10-28 14:06:56 +00:00
parent cbfbaf736a
commit f53195f29e
19 changed files with 105 additions and 97 deletions

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl, pkgconfig, strategoPackages}:
stdenv.mkDerivation rec {
name = "webdsl-9.7pre3056.tar.gz";
name = "webdsl-9.7pre3056";
src = fetchurl {
url = "http://hydra.nixos.org/build/71896/download/1/webdsl-9.7pre3056.tar.gz";

View File

@@ -1,17 +1,16 @@
args:
args.stdenv.mkDerivation rec {
name = "Yap-5.1.1";
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "yap-5.1.1";
src = args.fetchurl {
url = "http://downloads.sourceforge.net/yap/${name}.tar.gz";
src = fetchurl {
url = "http://downloads.sourceforge.net/yap/Yap-5.1.1.tar.gz";
sha256 = "0bajxmlla9gay4m4l7y7x6qldxzi0jcq2ykgpjk9liky7g5kbnya";
};
buildInputs =(with args; []);
meta = {
description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
homepage = http://yap.sourceforge.net/;
license = "artistic";
description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
homepage = http://yap.sourceforge.net/;
license = "artistic";
};
}