From 99b9d85e47d3fc4ea6aac7af8ccd03ede3502ce1 Mon Sep 17 00:00:00 2001 From: Simon Goller Date: Thu, 6 Jun 2024 07:47:40 +0200 Subject: [PATCH] Remove build.nix and use it on another repo --- build.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 build.nix diff --git a/build.nix b/build.nix deleted file mode 100644 index 385f276..0000000 --- a/build.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ pkgs ? import {}, features ? [] }: -let - specificPkgs = import (pkgs.fetchFromGitHub { - owner = "NixOS"; - repo = "nixpkgs"; - rev = "57610d2f8f0937f39dbd72251e9614b1561942d8"; - sha256 = "sha256-yZKhxVIKd2lsbOqYd5iDoUIwsRZFqE87smE2Vzf6Ck0="; - }) {}; - rustPlatform = specificPkgs.rustPlatform; -in - rustPlatform.buildRustPackage { - pname = "shifty-service"; - version = "0.1"; - src = ./.; - buildFeatures = features; - - cargoHash = "sha256-sTKupn3HMBf3lumCu1RUkzutc+RUNpuqEyGR2BMxAso="; - }