pkgs/applications: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, openssl, curl, SDL }:
|
||||
{ lib, stdenv, fetchurl, openssl, curl, SDL }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tinyemu";
|
||||
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://bellard.org/tinyemu/";
|
||||
description = "A system emulator for the RISC-V and x86 architectures";
|
||||
longDescription = "TinyEMU is a system emulator for the RISC-V and x86 architectures. Its purpose is to be small and simple while being complete.";
|
||||
license = with stdenv.lib.licenses; [ mit bsd2 ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ jhhuh ];
|
||||
license = with lib.licenses; [ mit bsd2 ];
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ jhhuh ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user