···11+Copyright 2021 Akshay Oppiliappan (nerdy@peppe.rs)
22+33+Permission is hereby granted, free of charge, to any person obtaining a copy of
44+this software and associated documentation files (the "Software"), to deal in
55+the Software without restriction, including without limitation the rights to
66+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
77+of the Software, and to permit persons to whom the Software is furnished to do
88+so, subject to the following conditions:
99+1010+The above copyright notice and this permission notice shall be included in all
1111+copies or substantial portions of the Software.
1212+1313+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1414+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1515+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1616+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1717+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1818+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919+SOFTWARE.
2020+
+1
bin/Cargo.toml
···22name = "statix"
33version = "0.2.0"
44edition = "2018"
55+license = "MIT"
5667# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78
+6
flake.nix
···6767 installPhase = ''
6868 install -Dm775 ./target/release/statix $out/bin/statix
6969 '';
7070+7171+ meta = with pkgs.lib; {
7272+ description = "Lints and suggestions for the Nix programming language";
7373+ homepage = "https://git.peppe.rs/languages/statix/about";
7474+ license = licenses.mit;
7575+ };
7076 };
71777278 };
+1
lib/Cargo.toml
···22name = "lib"
33version = "0.0.0"
44edition = "2018"
55+license = "MIT"
5667# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78
+1
macros/Cargo.toml
···22name = "macros"
33version = "0.0.0"
44edition = "2018"
55+license = "MIT"
5667# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78