Compare commits
	
		
			22 commits
		
	
	
		
			b2f306612a
			...
			f447cd380e
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| f447cd380e | |||
| 625756711e | |||
| 6d9b5080a2 | |||
| 27d7167292 | |||
| 27d9a986d9 | |||
| a27f7fb0c5 | |||
| b8d7c17dc6 | |||
| 698d6e7226 | |||
| 0db7b07361 | |||
| 19db1d33d4 | |||
| 25cfce2f7e | |||
| c08f889988 | |||
| 21eb3ca411 | |||
| ab1dd67e72 | |||
| d841c56b8f | |||
| 20c6d8bc13 | |||
| 21965c3971 | |||
| 97ddcbcaa1 | |||
| e1db10bcf3 | |||
| 05005f4702 | |||
| 5d897adb87 | |||
|   | 001462e8c3 | 
					 11 changed files with 224 additions and 4 deletions
				
			
		
							
								
								
									
										2
									
								
								LICENSE
									
										
									
									
									
								
							
							
						
						
									
										2
									
								
								LICENSE
									
										
									
									
									
								
							|  | @ -1,5 +1,3 @@ | |||
| MIT License | ||||
| 
 | ||||
| Copyright (c) 2024 qenya | ||||
| 
 | ||||
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||||
|  |  | |||
							
								
								
									
										6
									
								
								default.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								default.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | |||
| { pkgs ? import <nixpkgs> { } }: | ||||
| 
 | ||||
| { | ||||
|   digital-a-love-story = pkgs.pkgsi686Linux.callPackage ./packages/digital-a-love-story { }; | ||||
|   dont-take-it-personally-babe = pkgs.pkgsi686Linux.callPackage ./packages/dont-take-it-personally-babe { }; | ||||
| } | ||||
							
								
								
									
										27
									
								
								flake.lock
									
										
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								flake.lock
									
										
									
										generated
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,27 @@ | |||
| { | ||||
|   "nodes": { | ||||
|     "nixpkgs": { | ||||
|       "locked": { | ||||
|         "lastModified": 1734649271, | ||||
|         "narHash": "sha256-4EVBRhOjMDuGtMaofAIqzJbg4Ql7Ai0PSeuVZTHjyKQ=", | ||||
|         "owner": "NixOS", | ||||
|         "repo": "nixpkgs", | ||||
|         "rev": "d70bd19e0a38ad4790d3913bf08fcbfc9eeca507", | ||||
|         "type": "github" | ||||
|       }, | ||||
|       "original": { | ||||
|         "owner": "NixOS", | ||||
|         "ref": "nixos-unstable", | ||||
|         "repo": "nixpkgs", | ||||
|         "type": "github" | ||||
|       } | ||||
|     }, | ||||
|     "root": { | ||||
|       "inputs": { | ||||
|         "nixpkgs": "nixpkgs" | ||||
|       } | ||||
|     } | ||||
|   }, | ||||
|   "root": "root", | ||||
|   "version": 7 | ||||
| } | ||||
							
								
								
									
										26
									
								
								flake.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								flake.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,26 @@ | |||
| { | ||||
|   description = "Freeware games by Christine Love"; | ||||
| 
 | ||||
|   inputs = { | ||||
|     nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | ||||
|   }; | ||||
| 
 | ||||
|   outputs = { self, nixpkgs }: | ||||
|     let | ||||
|       systems = [ "x86_64-linux" "i686-linux" ]; | ||||
|       forAllSystems = nixpkgs.lib.genAttrs systems; | ||||
|     in | ||||
|     { | ||||
|       packages = forAllSystems (system: import ./default.nix { | ||||
|         pkgs = nixpkgs.legacyPackages."${system}"; | ||||
|       }); | ||||
| 
 | ||||
|       legacyPackages = forAllSystems (system: import ./default.nix { | ||||
|         pkgs = import nixpkgs { inherit system; }; | ||||
|       }); | ||||
| 
 | ||||
|       overlays.default = final: prev: { | ||||
|         scoutshonour = import ./default.nix { pkgs = final; }; | ||||
|       }; | ||||
|     }; | ||||
| } | ||||
							
								
								
									
										69
									
								
								packages/digital-a-love-story/default.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								packages/digital-a-love-story/default.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,69 @@ | |||
| { stdenv | ||||
| , lib | ||||
| , fetchzip | ||||
| , zlib | ||||
| , autoPatchelfHook | ||||
| , xorg | ||||
| , libpulseaudio | ||||
| , alsa-lib | ||||
| }: | ||||
| 
 | ||||
| stdenv.mkDerivation rec { | ||||
|   pname = "digital-a-love-story"; | ||||
|   version = "1.1"; | ||||
| 
 | ||||
|   src = fetchzip { | ||||
|     url = "https://www.scoutshonour.com/lilyofthevalley/digital-${version}.tar.bz2"; | ||||
|     sha256 = "+7KcZ8dKts1AoKWNfHMKIt+w2fBFIAcnkuAtzSw49xk="; | ||||
|   }; | ||||
| 
 | ||||
|   nativeBuildInputs = [ | ||||
|     autoPatchelfHook | ||||
|   ]; | ||||
| 
 | ||||
|   buildInputs = [ | ||||
|     zlib | ||||
|   ]; | ||||
| 
 | ||||
|   appendRunpaths = [ | ||||
|     "${xorg.libX11}/lib" | ||||
|     "${xorg.libXext}/lib" | ||||
|     "${xorg.libXrender}/lib" | ||||
|     "${xorg.libXrandr}/lib" | ||||
|     "${xorg.libXcursor}/lib" | ||||
|     "${libpulseaudio}/lib" | ||||
|     "${alsa-lib}/lib" | ||||
|   ]; | ||||
| 
 | ||||
|   sourceRoot = "."; | ||||
| 
 | ||||
|   dontConfigure = true; | ||||
|   dontBuild = true; | ||||
| 
 | ||||
|   installPhase = '' | ||||
|     runHook preInstall | ||||
| 
 | ||||
|     # copy distributed files | ||||
|     mkdir -p $out/opt/digital | ||||
|     cp -R source/* $out/opt/digital | ||||
| 
 | ||||
|     # add launcher | ||||
|     mkdir -p $out/bin | ||||
|     substituteAll ${./launcher.sh} $out/bin/digital | ||||
|     chmod +x $out/bin/digital | ||||
| 
 | ||||
|     # add desktop file | ||||
|     mkdir -p $out/share/applications | ||||
|     substituteAll ${./digital.desktop} $out/share/applications/digital.desktop | ||||
| 
 | ||||
|     runHook postInstall | ||||
|   ''; | ||||
| 
 | ||||
|   meta = with lib; { | ||||
|     homepage = "https://scoutshonour.com/digital/"; | ||||
|     description = "Digital: A Love Story, a freeware game by Christine Love"; | ||||
|     license = licenses.cc-by-nc-sa-30; | ||||
|     platforms = lists.intersectLists platforms.x86 platforms.linux; | ||||
|     mainProgram = "digital"; | ||||
|   }; | ||||
| } | ||||
							
								
								
									
										6
									
								
								packages/digital-a-love-story/digital.desktop
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								packages/digital-a-love-story/digital.desktop
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | |||
| [Desktop Entry] | ||||
| Name=Digital: A Love Story | ||||
| Exec=@out@/bin/digital | ||||
| Icon=@out@/opt/digital/game/icon.png | ||||
| Type=Application | ||||
| Categories=Game; | ||||
							
								
								
									
										3
									
								
								packages/digital-a-love-story/launcher.sh
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								packages/digital-a-love-story/launcher.sh
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| #!/bin/sh | ||||
| 
 | ||||
| exec "@out@/opt/digital/lib/python" "-OO" "@out@/opt/digital/Digital.py" "$@" | ||||
							
								
								
									
										76
									
								
								packages/dont-take-it-personally-babe/default.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								packages/dont-take-it-personally-babe/default.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,76 @@ | |||
| { stdenv | ||||
| , lib | ||||
| , fetchzip | ||||
| , zlib | ||||
| , xorg | ||||
| , libglvnd | ||||
| , libGLU | ||||
| , autoPatchelfHook | ||||
| , libpulseaudio | ||||
| , alsa-lib | ||||
| }: | ||||
| 
 | ||||
| stdenv.mkDerivation rec { | ||||
|   pname = "dont-take-it-personally-babe"; | ||||
|   version = "1.1"; | ||||
| 
 | ||||
|   src = fetchzip { | ||||
|     url = "https://scoutshonour.com/donttakeitpersonallybabeitjustaintyourstory/don't%20take%20it%20personally,%20babe-${version}-linux-x86.tar.bz2"; | ||||
|     sha256 = "X1xAJS8SrsQ5yrValrlfmeRLtSiH94EUw++GWjstwdc="; | ||||
|   }; | ||||
| 
 | ||||
|   nativeBuildInputs = [ | ||||
|     autoPatchelfHook | ||||
|   ]; | ||||
| 
 | ||||
|   buildInputs = [ | ||||
|     zlib | ||||
|     xorg.libX11 | ||||
|     xorg.libXext | ||||
|     libglvnd | ||||
|     libGLU | ||||
|     xorg.libXi | ||||
|     xorg.libXmu | ||||
|   ]; | ||||
| 
 | ||||
|   appendRunpaths = [ | ||||
|     "${xorg.libX11}/lib" | ||||
|     "${xorg.libXext}/lib" | ||||
|     "${xorg.libXrender}/lib" | ||||
|     "${xorg.libXrandr}/lib" | ||||
|     "${libpulseaudio}/lib" | ||||
|     "${alsa-lib}/lib" | ||||
|   ]; | ||||
| 
 | ||||
|   sourceRoot = "."; | ||||
| 
 | ||||
|   dontConfigure = true; | ||||
|   dontBuild = true; | ||||
| 
 | ||||
|   installPhase = '' | ||||
|     runHook preInstall | ||||
| 
 | ||||
|     # copy distributed files | ||||
|     mkdir -p $out/opt/donttakeitpersonallybabeitjustaintyourstory | ||||
|     cp -R source/* $out/opt/donttakeitpersonallybabeitjustaintyourstory | ||||
| 
 | ||||
|     # add launcher | ||||
|     mkdir -p $out/bin | ||||
|     substituteAll ${./launcher.sh} $out/bin/donttakeitpersonallybabeitjustaintyourstory | ||||
|     chmod +x $out/bin/donttakeitpersonallybabeitjustaintyourstory | ||||
| 
 | ||||
|     # add desktop file | ||||
|     mkdir -p $out/share/applications | ||||
|     substituteAll ${./donttakeitpersonallybabeitjustaintyourstory.desktop} $out/share/applications/donttakeitpersonallybabeitjustaintyourstory.desktop | ||||
| 
 | ||||
|     runHook postInstall | ||||
|   ''; | ||||
| 
 | ||||
|   meta = with lib; { | ||||
|     homepage = "https://scoutshonour.com/donttakeitpersonallybabeitjustaintyourstory/"; | ||||
|     description = "don't take it personally, babe, it just ain't your story: a freeware game by Christine Love"; | ||||
|     license = licenses.cc-by-nc-sa-30; | ||||
|     platforms = lists.intersectLists platforms.x86 platforms.linux; | ||||
|     mainProgram = "donttakeitpersonallybabeitjustaintyourstory"; | ||||
|   }; | ||||
| } | ||||
|  | @ -0,0 +1,6 @@ | |||
| [Desktop Entry] | ||||
| Name=don't take it personally, babe, it just ain't your story | ||||
| Exec=@out@/bin/donttakeitpersonallybabeitjustaintyourstory | ||||
| Icon=@out@/opt/donttakeitpersonallybabeitjustaintyourstory/game/icon256x256.png | ||||
| Type=Application | ||||
| Categories=Game; | ||||
							
								
								
									
										3
									
								
								packages/dont-take-it-personally-babe/launcher.sh
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								packages/dont-take-it-personally-babe/launcher.sh
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| #!/bin/sh | ||||
| 
 | ||||
| exec "@out@/opt/donttakeitpersonallybabeitjustaintyourstory/lib/python" "-OO" "@out@/opt/donttakeitpersonallybabeitjustaintyourstory/don't take it personally, babe.py" "$@" | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue