Skip to content

Commit

Permalink
emulicious: simplify derivation
Browse files Browse the repository at this point in the history
  • Loading branch information
bignaux committed Jun 2, 2024
1 parent b182715 commit a2788d7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pkgs/emulicious/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@ stdenv.mkDerivation rec {
pname = "emulicious";

src = fetchzip {
name = "${pname}-${version}.zip";
url = "https://emulicious.net/emulicious/downloads/${pname}-${version}.zip";
sha256 = "sha256-VsEAzqB97puSvPg8CxZAdr9bP2K7jSy02haguWsP7Z0=";
stripRoot=false;
};

nativeBuildInputs = [ makeWrapper ];

dontConfigure = true;
dontUnpack = true;
dontBuild = true;
dontPatchELF = true;
phases = [ "installPhase" ];

installPhase = ''
runHook preInstall
Expand Down

0 comments on commit a2788d7

Please sign in to comment.