pkgs/applications: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 14:24:03 +07:00
parent 2e34288f0d
commit 108bdac3d9
427 changed files with 1160 additions and 1154 deletions
@@ -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 ];
};
}