bump to v0.3.2

This commit is contained in:
Akshay 2021-10-31 22:45:42 +05:30
parent e8c955da4c
commit 84c9d656dd
4 changed files with 43 additions and 6 deletions

2
Cargo.lock generated
View File

@ -388,7 +388,7 @@ checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0"
[[package]]
name = "statix"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"ariadne",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "statix"
version = "0.3.1"
version = "0.3.2"
edition = "2018"
license = "MIT"
authors = [ "Akshay <nerdy@peppe.rs>" ]

View File

@ -1,5 +1,23 @@
{
"nodes": {
"gitignore": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1635165013,
"narHash": "sha256-o/BdVjNwcB6jOmzZjOH703BesSkkS5O7ej3xhyO8hAY=",
"owner": "hercules-ci",
"repo": "gitignore.nix",
"rev": "5b9e0ff9d3b551234b4f3eb3983744fa354b17f1",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "gitignore.nix",
"type": "github"
}
},
"import-cargo": {
"locked": {
"lastModified": 1594305518,
@ -32,6 +50,20 @@
}
},
"nixpkgs": {
"locked": {
"lastModified": 1632846328,
"narHash": "sha256-sFi6YtlGK30TBB9o6CW7LG9mYHkgtKeWbSLAjjrNTX0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2b71ddd869ad592510553d09fe89c9709fa26b2b",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1633422745,
"narHash": "sha256-gA6Ok64nPbkjHk3Oanq4641EeYkjcKhisDF9wBjLxEk=",
@ -49,9 +81,10 @@
},
"root": {
"inputs": {
"gitignore": "gitignore",
"import-cargo": "import-cargo",
"mozillapkgs": "mozillapkgs",
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs_2"
}
}
},

View File

@ -8,7 +8,9 @@
flake = false;
};
import-cargo.url = github:edolstra/import-cargo;
import-cargo.url = "github:edolstra/import-cargo";
gitignore.url = "github:hercules-ci/gitignore.nix";
};
@ -17,10 +19,12 @@
, nixpkgs
, mozillapkgs
, import-cargo
, gitignore
, ...
}:
let
inherit (import-cargo.builders) importCargo;
inherit (gitignore.lib) gitignoreSource;
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
@ -49,9 +53,9 @@
statix = with final; pkgs.stdenv.mkDerivation {
pname = "statix";
version = "v0.3.1";
version = "v0.3.2";
src = builtins.path {
path = ./.;
path = gitignoreSource ./.;
name = "statix";
};
nativeBuildInputs = [