replace "pkgs" arguments with individual packages
This commit is contained in:
parent
b32e181094
commit
428b2430ef
11 changed files with 35 additions and 39 deletions
|
@ -1,9 +1,9 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.stdenv.mkDerivation rec {
|
||||
{ stdenv, fetchzip, lib }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fairfax-hd";
|
||||
version = "2024-06-01";
|
||||
|
||||
src = pkgs.fetchzip {
|
||||
src = fetchzip {
|
||||
url = "https://github.com/kreativekorp/open-relay/releases/download" +
|
||||
"/2024-06-01/FairfaxHD.zip";
|
||||
hash = "sha256-kwdpWFOYhXt0HNqfWP3EeKYhJWgKsRs7cAbzHEasM80=";
|
||||
|
@ -31,6 +31,6 @@ pkgs.stdenv.mkDerivation rec {
|
|||
|
||||
[ucsur]: https://www.kreativekorp.com/ucsur
|
||||
'';
|
||||
platforms = pkgs.lib.platforms.all;
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue