aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2022-09-11 13:05:06 +0100
committerAkshay <[email protected]>2022-09-11 13:05:06 +0100
commitec912d679bfe5a0dbabfb4dcf475fba0edf93506 (patch)
tree8f954bd55fab9a8aa150ee4ad3da2b9a8dbafbdf
parent8b1dd1f5609447f5d862e330a75a4b2a0dfc3929 (diff)
remove gitignore
-rw-r--r--flake.lock21
-rw-r--r--flake.nix12
2 files changed, 3 insertions, 30 deletions
diff --git a/flake.lock b/flake.lock
index 1e575e3..52e1b55 100644
--- a/flake.lock
+++ b/flake.lock
@@ -21,26 +21,6 @@
21 "type": "github" 21 "type": "github"
22 } 22 }
23 }, 23 },
24 "gitignore": {
25 "inputs": {
26 "nixpkgs": [
27 "nixpkgs"
28 ]
29 },
30 "locked": {
31 "lastModified": 1635165013,
32 "narHash": "sha256-o/BdVjNwcB6jOmzZjOH703BesSkkS5O7ej3xhyO8hAY=",
33 "owner": "hercules-ci",
34 "repo": "gitignore.nix",
35 "rev": "5b9e0ff9d3b551234b4f3eb3983744fa354b17f1",
36 "type": "github"
37 },
38 "original": {
39 "owner": "hercules-ci",
40 "repo": "gitignore.nix",
41 "type": "github"
42 }
43 },
44 "nixpkgs": { 24 "nixpkgs": {
45 "locked": { 25 "locked": {
46 "lastModified": 1642069818, 26 "lastModified": 1642069818,
@@ -60,7 +40,6 @@
60 "root": { 40 "root": {
61 "inputs": { 41 "inputs": {
62 "fenix": "fenix", 42 "fenix": "fenix",
63 "gitignore": "gitignore",
64 "nixpkgs": "nixpkgs" 43 "nixpkgs": "nixpkgs"
65 } 44 }
66 }, 45 },
diff --git a/flake.nix b/flake.nix
index f57d49b..eb32a4e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,22 +8,14 @@
8 inputs.nixpkgs.follows = "nixpkgs"; 8 inputs.nixpkgs.follows = "nixpkgs";
9 }; 9 };
10 10
11 gitignore = {
12 url = "github:hercules-ci/gitignore.nix";
13 inputs.nixpkgs.follows = "nixpkgs";
14 };
15
16 }; 11 };
17 12
18 outputs = 13 outputs =
19 { self 14 { self
20 , nixpkgs 15 , nixpkgs
21 , fenix 16 , fenix
22 , gitignore
23 }: 17 }:
24 let 18 let
25 inherit (gitignore.lib) gitignoreSource;
26
27 supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 19 supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
28 forAllSystems = nixpkgs.lib.genAttrs supportedSystems; 20 forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
29 nixpkgsFor = forAllSystems (system: 21 nixpkgsFor = forAllSystems (system:
@@ -61,7 +53,7 @@
61 53
62 doCheck = false; 54 doCheck = false;
63 55
64 src = gitignoreSource ./.; 56 src = self;
65 cargoLock.lockFile = ./Cargo.lock; 57 cargoLock.lockFile = ./Cargo.lock;
66 }; 58 };
67 59
@@ -89,6 +81,8 @@
89 in 81 in
90 pkgs.mkShell { 82 pkgs.mkShell {
91 nativeBuildInputs = [ 83 nativeBuildInputs = [
84 pkgs.pkgconfig
85 pkgs.openssl
92 pkgs.bacon 86 pkgs.bacon
93 rust-analyzer 87 rust-analyzer
94 toolchain 88 toolchain