Remove illegal meta.src attributes

This commit is contained in:
Eelco Dolstra 2014-06-05 13:04:18 +02:00
parent 246edc3df2
commit 1da6a7d4a9
8 changed files with 11 additions and 29 deletions

View file

@ -1,28 +1,17 @@
{ stdenv, fetchurl, builderDefs }:
{ runCommand, fetchurl }:
let
let
src = fetchurl {
url = http://www.ladspa.org/ladspa_sdk/ladspa.h.txt;
sha256 = "1b908csn85ng9sz5s5d1mqk711cmawain2z8px2ajngihdrynb67";
};
in
let localDefs = builderDefs.passthru.function {
buildInputs = [];
inherit src;
};
in with localDefs;
let
copyFile = fullDepEntry ("
mkdir -p \$out/include
cp ${src} \$out/include/ladspa.h
") [minInit defEnsureDir];
in
stdenv.mkDerivation {
name = "ladspa.h";
builder = writeScript "ladspa.h-builder"
(textClosure localDefs [copyFile]);
meta = {
description = "LADSPA format audio plugins";
inherit src;
};
}
runCommand "ladspa.h"
{ meta.description = "LADSPA format audio plugins"; }
''
mkdir -p $out/include
cp ${src} $out/include/ladspa.h
''

View file

@ -33,6 +33,5 @@ stdenv.mkDerivation rec {
[doScons doForceShare doPropagate]);
meta = {
description = "Linux DC++ - Direct Connect client";
inherit src;
};
}

View file

@ -32,6 +32,5 @@ stdenv.mkDerivation rec {
(textClosure localDefs [allBuild doForceShare doPropagate]);
meta = {
description = "Qi - next generation on top of Common Lisp";
inherit src;
};
}

View file

@ -25,6 +25,5 @@ stdenv.mkDerivation rec {
(textClosure localDefs ["preConfigure" "doConfigure" "doMakeInstall" "doForceShare" "doPropagate"]);
meta = {
description = "Construo masses and springs simulation";
inherit src;
};
}

View file

@ -39,7 +39,6 @@ stdenv.mkDerivation rec {
[ customBuild doForceShare doPropagate]);
meta = {
description = "Orbit space flight simulator";
inherit src;
};
}

View file

@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
[doInstall doForceShare doPropagate]);
meta = {
description = "${name} dictionary for dictd";
inherit src;
};
};
# Probably a bug in some FreeDict release files, but easier to trivially

View file

@ -31,6 +31,5 @@ stdenv.mkDerivation rec {
[ installPhase doForceShare doPropagate]);
meta = {
description = "XMPP server in Java";
inherit src;
};
}

View file

@ -48,7 +48,6 @@ stdenv.mkDerivation rec {
(textClosure localDefs ["build" "doMakeInstall" "doForceShare" "doPropagate"]);
meta = {
description = "A relational filesystem on top of FUSE";
inherit src;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};