From f796942c56449601ebdea4f507b17ead663670c2 Mon Sep 17 00:00:00 2001 From: Benjamin Hipple Date: Sat, 25 Jan 2020 23:35:04 -0500 Subject: [PATCH] hexdino: use pname --- pkgs/applications/editors/hexdino/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/hexdino/default.nix b/pkgs/applications/editors/hexdino/default.nix index ef3635aa8d2..eee5a696555 100644 --- a/pkgs/applications/editors/hexdino/default.nix +++ b/pkgs/applications/editors/hexdino/default.nix @@ -1,6 +1,7 @@ { stdenv, fetchFromGitHub, rustPlatform, ncurses }: -rustPlatform.buildRustPackage rec { - name = "hexdino-${version}"; + +rustPlatform.buildRustPackage { + pname = "hexdino"; version = "0.1.0"; src = fetchFromGitHub {