mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
Merge pull request #104316 from AndersonTorres/at1985-update
This commit is contained in:
commit
ead04a6639
|
@ -1,18 +1,30 @@
|
|||
{ stdenv, fetchFromGitHub
|
||||
, libX11, libXft, libXinerama, fontconfig, freetype }:
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, libX11
|
||||
, libXft
|
||||
, libXinerama
|
||||
, fontconfig
|
||||
, freetype
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "berry";
|
||||
version = "0.1.5";
|
||||
version = "0.1.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JLErvin";
|
||||
repo = "berry";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1wxbjzpwqb9x7vd7kb095fiqj271rki980dnwcxjxpqlmmrmjzyl";
|
||||
sha256 = "sha256-2kFVOE5l1KQvDb5KDL7y0p4M7awJLrxJF871cyc0YZ8=";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXft libXinerama fontconfig freetype ];
|
||||
buildInputs =[
|
||||
libX11
|
||||
libXft
|
||||
libXinerama
|
||||
fontconfig
|
||||
freetype
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray+=( PREFIX="${placeholder "out"}"
|
||||
|
|
|
@ -1,25 +1,32 @@
|
|||
{ stdenv, fetchurl
|
||||
, pkgconfig, which, autoreconfHook
|
||||
, rep-gtk, pango, gdk-pixbuf-xlib
|
||||
, imlib, gettext, texinfo
|
||||
, libXinerama, libXrandr, libXtst, libICE, libSM
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, which
|
||||
, autoreconfHook
|
||||
, rep-gtk
|
||||
, pango
|
||||
, gdk-pixbuf-xlib
|
||||
, imlib
|
||||
, gettext
|
||||
, texinfo
|
||||
, libXinerama
|
||||
, libXrandr
|
||||
, libXtst
|
||||
, libICE
|
||||
, libSM
|
||||
, makeWrapper
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "sawfish";
|
||||
version = "1.12.90";
|
||||
sourceName = "sawfish_${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.tuxfamily.org/sawfish/${sourceName}.tar.xz";
|
||||
url = "https://download.tuxfamily.org/sawfish/${pname}_${version}.tar.xz";
|
||||
sha256 = "18p8srqqj9vjffg13qhspfz2gr1h4vfs10qzlv89g76r289iam31";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ which
|
||||
rep-gtk pango gdk-pixbuf-xlib imlib gettext texinfo
|
||||
libXinerama libXrandr libXtst libICE libSM
|
||||
|
@ -31,14 +38,15 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
postInstall = ''
|
||||
for i in $out/lib/sawfish/sawfish-menu $out/bin/sawfish-about $out/bin/sawfish-client $out/bin/sawfish-config $out/bin/sawfish; do
|
||||
for i in $out/lib/sawfish/sawfish-menu $out/bin/sawfish-about \
|
||||
$out/bin/sawfish-client $out/bin/sawfish-config $out/bin/sawfish; do
|
||||
wrapProgram $i \
|
||||
--prefix REP_DL_LOAD_PATH : "$out/lib/rep" \
|
||||
--set REP_LOAD_PATH "$out/share/sawfish/lisp"
|
||||
done
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "An extensible, Lisp-based window manager";
|
||||
longDescription = ''
|
||||
Sawfish is an extensible window manager using a Lisp-based scripting language.
|
||||
|
@ -47,7 +55,7 @@ stdenv.mkDerivation rec {
|
|||
All high-level WM functions are implemented in Lisp for future extensibility
|
||||
or redefinition.
|
||||
'';
|
||||
homepage = "http://sawfish.wikia.com";
|
||||
homepage = "https://sawfish.fandom.com/wiki/Main_Page";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
|
|
32
pkgs/games/1oom/default.nix
Normal file
32
pkgs/games/1oom/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchFromGitLab, autoreconfHook, libsamplerate, SDL2, SDL2_mixer, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "1oom";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "KilgoreTroutMaskReplicant";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-+HwSykSyAGHtITVOu4nIG87kWwVxGyFXb/NRSjhWlvs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ libsamplerate SDL2 SDL2_mixer readline ];
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
postInstall = ''
|
||||
install -d $doc/share/doc/${pname}
|
||||
install -t $doc/share/doc/${pname} \
|
||||
HACKING NEWS PHILOSOPHY README doc/*.txt
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://kilgoretroutmaskreplicant.gitlab.io/plain-html/";
|
||||
description = "Master of Orion (1993) game engine recreation";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
}
|
|
@ -25051,6 +25051,8 @@ in
|
|||
|
||||
### GAMES
|
||||
|
||||
_1oom = callPackage ../games/1oom { };
|
||||
|
||||
_2048-in-terminal = callPackage ../games/2048-in-terminal { };
|
||||
|
||||
_20kly = callPackage ../games/20kly { };
|
||||
|
|
Loading…
Reference in a new issue