Add Nix derivation

This commit is contained in:
Félix Baylac Jacqué 2023-08-25 23:08:17 +02:00
parent ee9d8972e0
commit e98c8e55ef
1 changed files with 11 additions and 0 deletions

11
default.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {}, lib ? pkgs.lib }:
pkgs.rustPlatform.buildRustPackage {
pname = "picobak";
version = "0.1.0";
src = lib.cleanSource ./.;
cargoHash = "sha256-gytrsYdL9WuxJDZBaK/w+1KLmAKKBD711efHTzQqs4o=";
meta = {
description = "Backup and organize your pictures library";
};
}