commit
df2bae8097
@ -16,9 +16,10 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ python3.pkgs.sphinx ];
|
nativeBuildInputs = [ python3.pkgs.sphinx ];
|
||||||
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
|
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A program to generate and execute DesktopEntry files of the Application type";
|
description = "A program to generate and execute DesktopEntry files of the Application type";
|
||||||
homepage = https://github.com/jceb/dex;
|
homepage = https://github.com/jceb/dex;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -19,5 +19,6 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
inherit (virtualglLib.meta) license;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.virtualgl.org/;
|
homepage = http://www.virtualgl.org/;
|
||||||
description = "X11 GL rendering in a remote computer with full 3D hw acceleration";
|
description = "X11 GL rendering in a remote computer with full 3D hw acceleration";
|
||||||
license = licenses.free; # many parts under different free licenses
|
license = licenses.wxWindows;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ abbradar ];
|
maintainers = with maintainers; [ abbradar ];
|
||||||
};
|
};
|
||||||
|
@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
|
|||||||
sed -i -e '/#!\/bin\/sh/a"PATH=${xorg.xdpyinfo}\/bin:${xorg.xauth}\/bin:$PATH\\n"' -e 's|/bin/su|/run/wrappers/bin/su|g' x11vnc/ssltools.h
|
sed -i -e '/#!\/bin\/sh/a"PATH=${xorg.xdpyinfo}\/bin:${xorg.xauth}\/bin:$PATH\\n"' -e 's|/bin/su|/run/wrappers/bin/su|g' x11vnc/ssltools.h
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A VNC server connected to a real X11 screen";
|
description = "A VNC server connected to a real X11 screen";
|
||||||
homepage = http://www.karlrunge.com/x11vnc/;
|
homepage = http://www.karlrunge.com/x11vnc/;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15,9 +15,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://fredrik.hubbe.net/x2vnc.html;
|
homepage = http://fredrik.hubbe.net/x2vnc.html;
|
||||||
description = "A program to control a remote VNC server";
|
description = "A program to control a remote VNC server";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -81,5 +81,6 @@ in buildPythonApplication rec {
|
|||||||
description = "Persistent remote applications for X";
|
description = "Persistent remote applications for X";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ tstrobel offline ];
|
maintainers = with maintainers; [ tstrobel offline ];
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -68,11 +68,12 @@ buildPythonApplication rec {
|
|||||||
#'';
|
#'';
|
||||||
|
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://xpra.org/;
|
homepage = http://xpra.org/;
|
||||||
downloadPage = "https://xpra.org/src/";
|
downloadPage = "https://xpra.org/src/";
|
||||||
downloadURLRegexp = "xpra-.*[.]tar[.]xz$";
|
downloadURLRegexp = "xpra-.*[.]tar[.]xz$";
|
||||||
description = "Persistent remote applications for X";
|
description = "Persistent remote applications for X";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -24,10 +24,11 @@ stdenv.mkDerivation rec {
|
|||||||
ln -s libXinerama.so.1 $out/lib/libXinerama.so
|
ln -s libXinerama.so.1 $out/lib/libXinerama.so
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://xpra.org/;
|
homepage = http://xpra.org/;
|
||||||
description = "fakeXinerama for Xpra";
|
description = "fakeXinerama for Xpra";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
|
maintainers = [ maintainers.tstrobel ];
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
substituteInPlace Makefile \
|
substituteInPlace Makefile \
|
||||||
--replace "\$(DESTDIR)/usr" "$out" \
|
--replace "\$(DESTDIR)/usr" "$out" \
|
||||||
--replace "-o root" "" \
|
--replace "-o root" "" \
|
||||||
--replace "-g root" ""
|
--replace "-g root" ""
|
||||||
'';
|
'';
|
||||||
makeFlags = [ "LIBDIR=$out" ];
|
makeFlags = [ "LIBDIR=$out" ];
|
||||||
|
|
||||||
@ -29,12 +29,13 @@ stdenv.mkDerivation rec {
|
|||||||
tar xf "${dd_rhelp_src}" -C "$out/share/dd_rescue"
|
tar xf "${dd_rhelp_src}" -C "$out/share/dd_rescue"
|
||||||
cp "$out/share/dd_rescue"/dd_rhelp*/dd_rhelp "$out/bin"
|
cp "$out/share/dd_rescue"/dd_rhelp*/dd_rhelp "$out/bin"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A tool to copy data from a damaged block device";
|
description = "A tool to copy data from a damaged block device";
|
||||||
maintainers = with maintainers; [ raskin domenkozar ];
|
maintainers = with maintainers; [ raskin domenkozar ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
downloadPage = "http://www.garloff.de/kurt/linux/ddrescue/";
|
homepage = "http://www.garloff.de/kurt/linux/ddrescue/";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
inherit version;
|
inherit version;
|
||||||
updateWalker = true;
|
updateWalker = true;
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation {
|
|||||||
rev = "2e7b4317c723406bd75b2a1d640219ab9f8090ce";
|
rev = "2e7b4317c723406bd75b2a1d640219ab9f8090ce";
|
||||||
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
|
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ go systemd polkit m4 removeReferencesTo ];
|
buildInputs = [ go systemd polkit m4 removeReferencesTo ];
|
||||||
disallowedRequisites = [ go ];
|
disallowedRequisites = [ go ];
|
||||||
|
|
||||||
@ -19,9 +19,10 @@ stdenv.mkDerivation {
|
|||||||
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
|
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A daemon for keeping the system timezone up-to-date based on the current location";
|
description = "A daemon for keeping the system timezone up-to-date based on the current location";
|
||||||
homepage = https://github.com/Stebalien/localtime;
|
homepage = https://github.com/Stebalien/localtime;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -8,10 +8,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
|
sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://sg.danny.cz/sg/;
|
homepage = http://sg.danny.cz/sg/;
|
||||||
description = "Utilities that send SCSI commands to devices";
|
description = "Utilities that send SCSI commands to devices";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ ];
|
license = with licenses; [ bsd2 gpl2Plus ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,5 +22,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://www.codon.org.uk/~mjg59/vbetool/;
|
homepage = http://www.codon.org.uk/~mjg59/vbetool/;
|
||||||
maintainers = [ maintainers.raskin ];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ buildRubyGem, ruby }:
|
{ lib, buildRubyGem, ruby }:
|
||||||
|
|
||||||
buildRubyGem rec {
|
buildRubyGem rec {
|
||||||
inherit ruby;
|
inherit ruby;
|
||||||
@ -12,5 +12,6 @@ buildRubyGem rec {
|
|||||||
homepage = https://github.com/unnu/flvtool2;
|
homepage = https://github.com/unnu/flvtool2;
|
||||||
description = "A tool to manipulate Macromedia Flash Video files";
|
description = "A tool to manipulate Macromedia Flash Video files";
|
||||||
platforms = ruby.meta.platforms;
|
platforms = ruby.meta.platforms;
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user