commit
ad66329022
|
@ -13,6 +13,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||
* add it to this list. The URL mentioned above is a good source for inspiration.
|
||||
*/
|
||||
|
||||
abstyles = spdx {
|
||||
spdxId = "Abstyles";
|
||||
fullName = "Abstyles License";
|
||||
};
|
||||
|
||||
afl21 = spdx {
|
||||
spdxId = "AFL-2.1";
|
||||
fullName = "Academic Free License v2.1";
|
||||
|
|
|
@ -46,5 +46,6 @@ stdenv.mkDerivation rec {
|
|||
description = "Literate Programming in C/C++";
|
||||
platforms = with platforms; unix;
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
license = licenses.abstyles;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2,18 +2,19 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "eggdbus-0.6";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://hal.freedesktop.org/releases/${name}.tar.gz";
|
||||
sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4";
|
||||
};
|
||||
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ glib dbus dbus-glib ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://hal.freedesktop.org/releases/;
|
||||
description = "D-Bus bindings for GObject";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
|
|||
url = "http://tango.freedesktop.org/releases/${name}.tar.gz";
|
||||
sha256 = "071fj2jm5kydlz02ic5sylhmw6h2p3cgrm3gwdfabinqkqcv4jh4";
|
||||
};
|
||||
|
||||
|
||||
buildInputs = [perl XMLSimple librsvg];
|
||||
|
||||
postInstall =
|
||||
|
@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
|
|||
meta = with stdenv.lib; {
|
||||
homepage = http://tango.freedesktop.org/Standard_Icon_Naming_Specification;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
|
|||
meta = with stdenv.lib; {
|
||||
description = "Library call tracer";
|
||||
homepage = https://www.ltrace.org/;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
|
|||
description = "A tool that allows packages to find out information about other packages";
|
||||
homepage = http://pkg-config.freedesktop.org/wiki/;
|
||||
platforms = platforms.all;
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -23,5 +23,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
inherit (sqitchModule.meta) license;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,5 +23,6 @@ stdenv.mkDerivation rec {
|
|||
description = "Allow multiple web change files";
|
||||
platforms = with platforms; unix;
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
license = licenses.abstyles;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@ stdenv.mkDerivation rec {
|
|||
description = "Parse Command Line Interface";
|
||||
homepage = "https://parse.com";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
phases = "installPhase";
|
||||
|
@ -22,4 +23,4 @@ stdenv.mkDerivation rec {
|
|||
cp "$src" "$out/bin/parse"
|
||||
chmod +x "$out/bin/parse"
|
||||
'';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
preBuild="makeFlagsArray+=( PREFIX=$out )";
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://piumarta.com/software/peg/;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ ];
|
||||
platforms = platforms.all;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -13,9 +13,10 @@ stdenv.mkDerivation {
|
|||
preConfigure = "autoconf";
|
||||
patches = [ ./tradcpp-configure.patch ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A traditional (K&R-style) C macro preprocessor";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
platforms = platforms.all;
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -62,5 +62,6 @@ in stdenv.mkDerivation rec {
|
|||
homepage = https://github.com/facebook/xcbuild;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ copumpkin matthewbauer ];
|
||||
license = with licenses; [ bsd2 bsd3 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue