This commit is contained in:
Sakooooo 2023-08-06 18:05:57 +03:00
parent b685d931d7
commit d8be9e4bbe
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 9 additions and 6 deletions

View file

@ -1,7 +1,10 @@
{ {
"eval": { "eval": {
"target": { "target": {
"args": ["--expr", "with import <nixpkgs> { }; ./default.nix { }"] "args": [
"--expr",
"with import <nixpkgs> { }; callPackage ./nullpomino.nix { }"
]
} }
} }
} }

View file

@ -1,8 +1,8 @@
{ lib {
, stdenv lib,
, fetchFromGithub stdenv,
fetchFromGithub,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "nullpomino"; name = "nullpomino";
version = "v7.5.0";
} }