use shorthand nixpkgs, switch to outils

This commit is contained in:
Aaron Bieber 2023-08-08 07:13:51 -06:00
parent 7a86e5d41e
commit baf0a4c101
No known key found for this signature in database
2 changed files with 8 additions and 10 deletions

View File

@ -2,16 +2,14 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1663850217, "lastModified": 1691405454,
"narHash": "sha256-tp9nXo1/IdN/xN9m06ryy0QUAEfoN6K56ObM/1QTAjc=", "narHash": "sha256-D76+fg/0znDAG/iiDS6znqHx3qVr9b8OG7Be+ILTapc=",
"owner": "NixOS", "path": "/nix/store/5dnc5l02xxdfgn53jrnzz30xf5iandid-source",
"repo": "nixpkgs", "rev": "9b204e5c6dca8e516803b417971be45d8b2fc7b4",
"rev": "ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90", "type": "path"
"type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect" "type": "indirect"
} }
}, },

View File

@ -1,7 +1,7 @@
{ {
description = "openbsd.app: a tool to search OpenBSD packages"; description = "openbsd.app: a tool to search OpenBSD packages";
inputs.nixpkgs.url = "nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "nixpkgs";
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
let let
@ -21,7 +21,7 @@
perl perl
Mojolicious Mojolicious
MojoSQLite MojoSQLite
pkgs.minisign pkgs.outils
]; ];
buildInputs = with pkgs; [ perl ]; buildInputs = with pkgs; [ perl ];
@ -46,7 +46,7 @@
perl perl
Mojolicious Mojolicious
MojoSQLite MojoSQLite
pkgs.minisign pkgs.outils
]; ];
}; };
}); });