commit
fc67c051e4
@ -20,8 +20,10 @@ stdenv.mkDerivation rec {
|
|||||||
cp drgeo.desktop.in drgeo.desktop
|
cp drgeo.desktop.in drgeo.desktop
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Interactive geometry program";
|
description = "Interactive geometry program";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
homepage = https://sourceforge.net/projects/ofset;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation (rec {
|
|||||||
dontAddPrefix = true;
|
dontAddPrefix = true;
|
||||||
configureFlags = [ "--prefix" "$(out)" ];
|
configureFlags = [ "--prefix" "$(out)" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A program for proof-tree visualization";
|
description = "A program for proof-tree visualization";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Prooftree is a program for proof-tree visualization during interactive
|
Prooftree is a program for proof-tree visualization during interactive
|
||||||
@ -35,7 +35,8 @@ stdenv.mkDerivation (rec {
|
|||||||
shift-click).
|
shift-click).
|
||||||
'';
|
'';
|
||||||
homepage = http://askra.de/software/prooftree;
|
homepage = http://askra.de/software/prooftree;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.jwiegley ];
|
maintainers = [ maintainers.jwiegley ];
|
||||||
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
|
|||||||
of the full GiNaC, and it is *only* meant to be used as a Python library.
|
of the full GiNaC, and it is *only* meant to be used as a Python library.
|
||||||
'';
|
'';
|
||||||
homepage = http://pynac.org;
|
homepage = http://pynac.org;
|
||||||
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ timokau ];
|
maintainers = with maintainers; [ timokau ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -67,10 +67,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://root.cern.ch/;
|
homepage = https://root.cern.ch/;
|
||||||
description = "A data analysis framework";
|
description = "A data analysis framework";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
maintainers = [ maintainers.veprbl ];
|
||||||
|
license = licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -27,9 +27,10 @@ python2Packages.buildPythonApplication rec {
|
|||||||
--subst-var-by certPath /etc/ssl/certs/ca-certificates.crt
|
--subst-var-by certPath /etc/ssl/certs/ca-certificates.crt
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://bazaar-vcs.org/;
|
homepage = http://bazaar-vcs.org/;
|
||||||
description = "A distributed version control system that Just Works";
|
description = "A distributed version control system that Just Works";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,9 +11,10 @@ python2Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Bazaar plugins";
|
description = "Bazaar plugins";
|
||||||
homepage = http://wiki.bazaar.canonical.com/BzrTools;
|
homepage = http://wiki.bazaar.canonical.com/BzrTools;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -23,10 +23,11 @@ stdenv.mkDerivation rec {
|
|||||||
/* !!! maybe we should absolutise the program names in
|
/* !!! maybe we should absolutise the program names in
|
||||||
$out/lib/python2.4/site-packages/cvs2svn_lib/config.py. */
|
$out/lib/python2.4/site-packages/cvs2svn_lib/config.py. */
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A tool to convert CVS repositories to Subversion repositories";
|
description = "A tool to convert CVS repositories to Subversion repositories";
|
||||||
homepage = http://cvs2svn.tigris.org/;
|
homepage = http://cvs2svn.tigris.org/;
|
||||||
maintainers = [ lib.maintainers.makefu ];
|
maintainers = [ maintainers.makefu ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,8 +25,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Qt4 based GUI for monotone";
|
description = "Qt4 based GUI for monotone";
|
||||||
homepage = http://guitone.thomaskeller.biz;
|
homepage = https://guitone.thomaskeller.biz;
|
||||||
downloadPage = https://code.monotone.ca/p/guitone/;
|
downloadPage = https://code.monotone.ca/p/guitone/;
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
inherit (qt4.meta) platforms;
|
inherit (qt4.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -33,9 +33,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
#doCheck = true; # some tests fail (and they take VERY long)
|
#doCheck = true; # some tests fail (and they take VERY long)
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A free distributed version control system";
|
description = "A free distributed version control system";
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://hg.gerg.ca/vcprompt;
|
homepage = http://hg.gerg.ca/vcprompt;
|
||||||
maintainers = with maintainers; [ cstrahan ];
|
maintainers = with maintainers; [ cstrahan ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13,9 +13,10 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q";
|
sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file";
|
description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file";
|
||||||
homepage = http://tivodecode.sourceforge.net;
|
homepage = http://tivodecode.sourceforge.net;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,9 +25,10 @@ stdenv.mkDerivation rec {
|
|||||||
LIRC_LIBS="-L ${lirc}/lib -llirc_client";
|
LIRC_LIBS="-L ${lirc}/lib -llirc_client";
|
||||||
#NIX_LDFLAGS = "-lXext -lgcc_s";
|
#NIX_LDFLAGS = "-lXext -lgcc_s";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.xine-project.org/;
|
homepage = http://www.xine-project.org/;
|
||||||
description = "Xlib-based interface to Xine, a video player";
|
description = "Xlib-based interface to Xine, a video player";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A stand-alone panel";
|
description = "A stand-alone panel";
|
||||||
maintainers = with maintainers; [ raskin ];
|
maintainers = with maintainers; [ raskin ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user