diff options
author | Bernardo Meurer | 2021-09-15 10:03:29 -0700 |
---|---|---|
committer | Bernardo Meurer | 2021-09-15 10:03:29 -0700 |
commit | dc6e17b86f0026db86f6ec25c4df63ac497b9303 (patch) | |
tree | 7f5faa185f68a2f46a58d1de2248ae87d776b327 | |
parent | e5546f9c2503c26d175f08a81fc0a0f330be4cbe (diff) |
flake: replace naersk with buildRustPackage
-rw-r--r-- | flake.lock | 22 | ||||
-rw-r--r-- | flake.nix | 16 |
2 files changed, 8 insertions, 30 deletions
@@ -16,27 +16,6 @@ "type": "github" } }, - "naersk": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1622810282, - "narHash": "sha256-4wmvM3/xfD0hCdNDIXVzRMfL4yB1J+DjH6Zte2xbAxk=", - "owner": "nmattia", - "repo": "naersk", - "rev": "e8061169e1495871b56be97c5c51d310fae01374", - "type": "github" - }, - "original": { - "owner": "nmattia", - "ref": "master", - "repo": "naersk", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1622972307, @@ -56,7 +35,6 @@ "root": { "inputs": { "flake-compat": "flake-compat", - "naersk": "naersk", "nixpkgs": "nixpkgs", "utils": "utils" } @@ -8,10 +8,6 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - naersk = { - url = "github:nmattia/naersk/master"; - inputs.nixpkgs.follows = "nixpkgs"; - }; utils.url = "github:numtide/flake-utils"; flake-compat = { url = "github:edolstra/flake-compat"; @@ -19,11 +15,10 @@ }; }; - outputs = { self, nixpkgs, utils, naersk, ... }: + outputs = { self, nixpkgs, utils, ... }: { overlay = final: prev: let - naersk-lib = final.callPackage naersk { }; system = final.system; isDarwin = final.lib.strings.hasSuffix "-darwin" system; darwinOptions = final.lib.optionalAttrs isDarwin { @@ -35,8 +30,13 @@ { deploy-rs = { - deploy-rs = naersk-lib.buildPackage (darwinOptions // { - root = ./.; + deploy-rs = final.rustPlatform.buildRustPackage (darwinOptions // { + pname = "deploy-rs"; + version = "0.1.0"; + + src = ./.; + + cargoLock.lockFile = ./Cargo.lock; }) // { meta.description = "A Simple multi-profile Nix-flake deploy tool"; }; lib = rec { |