remove references to stdenv and replace with lib
This commit is contained in:
parent
ba1078adfc
commit
0dd9ecdafe
6 changed files with 16 additions and 13 deletions
|
@ -1,6 +1,7 @@
|
|||
{ stdenv }:
|
||||
{ lib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
with lib;
|
||||
mkDerivation rec {
|
||||
name = "dadadaKeys";
|
||||
version = "1";
|
||||
|
||||
|
@ -13,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||
cp * $out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = {
|
||||
description = "Public keys for my infrastructure";
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.all;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue