This commit is contained in:
Tim Schubert 2021-06-02 21:38:52 +02:00
parent 2dcf9e12a7
commit 9b8bb5e88d
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
10 changed files with 41 additions and 43 deletions

View file

@ -1,4 +1,5 @@
{ stdenv
, lib
, git
, openssh
, bash
@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
install $script $out/bin/
done
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "deploy scripts";
license = licenses.publicDomain;
platforms = platforms.linux;

View file

@ -1,4 +1,4 @@
{ stdenv }:
{ stdenv, lib }:
stdenv.mkDerivation rec {
name = "dadadaKeys";
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
cp * $out
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "Public keys for my infrastructure";
license = licenses.publicDomain;
platforms = platforms.all;

View file

@ -47,7 +47,7 @@ buildPythonPackage rec {
pythonPackages.pytestcov
];
#doCheck = true;
doCheck = false;
meta = with lib; {
description = "Markdown recipe manager, reference implementation of RecipeMD";

View file

@ -1,9 +1,9 @@
{ stdenv }:
{ pkgs, stdenv, lib }:
(import
(builtins.fetchGit {
(pkgs.fetchgit {
url = "https://git.dadada.li/dadada/scripts.git";
ref = "main";
rev = "3393073cd3511d43f622972b891a20ba069fa052";
sha256 = "0pspybphfqmccl9w97dr89g47dbxk8ly05x8x7c313a5i3pzd5lm";
rev = "e1a887a658da130c2a513d4c770d5026565c4e69";
})
{ inherit stdenv; })
{ stdenv = stdenv; lib = lib; })