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

difftreelog

build update flake cargoSha256

Lach2020-08-23parent: #d859bb9.patch.diff
in: master

1 file changed

modifiedflake.nixdiffbeforeafterboth
before · flake.nix
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 = "13fc96lvcg8riv8s8k44nshyc9jj390x5wmizfplny8lrxcr14lk";16        };17      in { defaultPackage = jrsonnet; });18}
after · flake.nix
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}