Skip to content

Commit

Permalink
feat: Delete pkgs (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
haruki7049 authored Jul 19, 2024
1 parent 82054ce commit 34e862d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
self: super: {
deno =
let
pkgs = import <nixpkgs> { };
lib = pkgs.lib;
fetchurl = pkgs.fetchurl;
stdenv = pkgs.stdenv;
lib = super.lib;
fetchurl = super.fetchurl;
stdenv = super.stdenv;
sources = lib.importJSON ./sources.json;

mkBinaryInstall = { pname ? "deno", version, url, sha256 }:
Expand Down

0 comments on commit 34e862d

Please sign in to comment.