git.delta.rocks / jrsonnet / refs/commits / e072f7a8df54

difftreelog

source

flake.nix596 Bsourcehistory
1{2  description = "Rust jsonnet implementation";34  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";5  inputs.flake-utils.url = "github:numtide/flake-utils";67  outputs = { self, nixpkgs, flake-utils }:8    flake-utils.lib.eachDefaultSystem (system:9      let10        pkgs = nixpkgs.legacyPackages.${system};11        jrsonnet = pkgs.rustPlatform.buildRustPackage rec {12          pname = "jrsonnet";13          version = "0.1.0";14          src = self;15          cargoSha256 = "120mbfh8wlkyp7dlf86yk0544m9vm0y9awrmny9izsyzzix2ccnx";16        };17      in { defaultPackage = jrsonnet; });18}