Fix program name

This commit is contained in:
Jelle Besseling 2022-02-20 21:49:15 +01:00
parent 327ea5390d
commit f8ef71cfa7
No known key found for this signature in database
GPG Key ID: 9712452E8BE3372E

View File

@ -1,5 +1,5 @@
{ {
description = "jujitsu"; description = "jujutsu";
inputs.nixpkgs-mozilla.url = "github:mozilla/nixpkgs-mozilla"; inputs.nixpkgs-mozilla.url = "github:mozilla/nixpkgs-mozilla";
@ -18,7 +18,7 @@
in in
{ {
overlay = (final: prev: { overlay = (final: prev: {
jujitsu = final.callPackage jujutsu = final.callPackage
( (
{ stdenv { stdenv
, lib , lib
@ -91,12 +91,12 @@
in in
{ {
devShell.${system} = pkgs.mkShell { devShell.${system} = pkgs.mkShell {
inputsFrom = [ pkgs.jujitsu ]; inputsFrom = [ pkgs.jujutsu ];
packages = [ updateToolchainManifest ]; packages = [ updateToolchainManifest ];
}; };
packages.${system}.jujitsu = pkgs.jujitsu; packages.${system}.jujutsu = pkgs.jujutsu;
defaultPackage.${system} = self.packages.${system}.jujitsu; defaultPackage.${system} = self.packages.${system}.jujutsu;
checks.${system}.jujitsu = pkgs.jujitsu.overrideAttrs ({ ... }: { checks.${system}.jujutsu = pkgs.jujutsu.overrideAttrs ({ ... }: {
cargoBuildType = "debug"; cargoBuildType = "debug";
cargoCheckType = "debug"; cargoCheckType = "debug";
preCheck = '' preCheck = ''