Revert "remove references to stdenv and replace with lib"
This reverts commit 0dd9ecdafe
.
This commit is contained in:
parent
0dd9ecdafe
commit
d62566250f
6 changed files with 13 additions and 16 deletions
|
@ -17,6 +17,7 @@ with pkgs; [
|
|||
direnv
|
||||
element-desktop
|
||||
evince
|
||||
gnome3.evolution
|
||||
ffmpeg
|
||||
file
|
||||
firefox
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
{ lib
|
||||
{ stdenv
|
||||
, git
|
||||
, openssh
|
||||
, bash
|
||||
}:
|
||||
with lib;
|
||||
mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dadada-deploy";
|
||||
version = "0.1";
|
||||
|
||||
|
@ -25,7 +24,7 @@ mkDerivation rec {
|
|||
install $script $out/bin/
|
||||
done
|
||||
'';
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "deploy scripts";
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{ lib, pandoc, fetchFromGitHub }:
|
||||
with lib;
|
||||
mkDerivation rec {
|
||||
{ stdenv, pandoc, fetchFromGitHub }:
|
||||
stdenv.mkDerivation rec {
|
||||
src = fetchFromGitHub {
|
||||
owner = "dadada";
|
||||
repo = "dadada.li";
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ lib }:
|
||||
{ stdenv }:
|
||||
|
||||
with lib;
|
||||
mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dadadaKeys";
|
||||
version = "1";
|
||||
|
||||
|
@ -14,7 +13,7 @@ mkDerivation rec {
|
|||
cp * $out
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Public keys for my infrastructure";
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.all;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib }:
|
||||
{ stdenv }:
|
||||
|
||||
(import
|
||||
(builtins.fetchGit {
|
||||
|
@ -6,4 +6,4 @@
|
|||
ref = "main";
|
||||
rev = "3393073cd3511d43f622972b891a20ba069fa052";
|
||||
})
|
||||
{ inherit lib; })
|
||||
{ inherit stdenv; })
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{ lib, fetchzip, unzip }:
|
||||
with lib;
|
||||
mkDerivation rec {
|
||||
{ stdenv, fetchzip, unzip }:
|
||||
stdenv.mkDerivation rec {
|
||||
src = ./tubslatex_1.3.2.tds.zip;
|
||||
sourceRoot = ".";
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue